python中如何將回車作為輸入內(nèi)容
python中如何將回車作為輸入內(nèi)容?
呼啦一陣風
2019-04-11 11:07:29
TA貢獻1864條經(jīng)驗 獲得超2個贊
Python默認遇到回車的時候,輸入結束。所以我們需要更改這個提示符,在遇到空行的時候,輸入才結束。
123456 | stopword = '' # 輸入停止符 str = '' for line in iter ( raw_input , stopword): # 輸入為空行,表示輸入結束 str + = line + '\n' # print (str) #測試用 |
TA貢獻1818條經(jīng)驗 獲得超3個贊
raw_input就是從標注輸入讀取輸入,輸入的是什么就是什么。
文檔解釋:
The function then reads a line from input, converts it to a string (stripping a
trailing newline), and returns that.
舉報