在 Python2 中如要想要獲得用戶從命令行的輸入,可以使用 input() 和 raw_input() 兩個函數,那麼這兩者有什麼區別呢? 我們先藉助 help 函數來看下兩者的文檔註釋: 可以看出,raw_input() 返回的始終是一個“原始”(raw)字元串,並且去掉了行末的換行符。 值得 ...
在 Python2 中如要想要獲得用戶從命令行的輸入,可以使用 input() 和 raw_input() 兩個函數,那麼這兩者有什麼區別呢?
我們先藉助 help 函數來看下兩者的文檔註釋:
>>> help(raw_input)
Help on built-in function raw_input in module __builtin__:
raw_input(...)
raw_input([prompt]) -> string
Read a string from standard input. The trailing newline is stripped.
If the user hits EOF (Unix: Ctl-D, Windows: Ctl-Z+Return), raise EOFError.
On Unix, GNU readline is used if enabled. The prompt string, if given,
is printed without a trailing newline before reading.
>>> help(input)
Help on built-in function input in module __builtin__:
input(...)
input([prompt]) -> value
Equivalent to eval(raw_input(prompt)).
可以看出,raw_input() 返回的始終是一個“原始”(raw)字元串,並且去掉了行末的換行符。
值得註意的是,文檔還提到“On Unix, GNU readline is used if enabled. ”,
這是說,如果 *nix 系統中安裝了 GNU readline 庫,並且在 python 中啟用了(import readline
),那麼 raw_input() 底層就會調用這個庫。
如果不啟用,raw_input() 也能用,只不過會讀取你鍵盤輸入的所有字元,包括不可見字元,比如回退鍵……這樣就很不方便了是不是。
而 input() 其實是在 raw_input() 返回的結果上再 調用了 eval() 函數,把原始字元串計算成 python 可以識別的對象。
在 Pyhon3 中,已經沒有 raw_input() 函數了,而剩下 input() 函數與 Python2 中的 raw_input() 行為一致:
>>> help(raw_input)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
NameError: name 'raw_input' is not defined
>>> help(input)
Help on built-in function input in module builtins:
input(prompt=None, /)
Read a string from standard input. The trailing newline is stripped.
The prompt string, if given, is printed to standard output without a
trailing newline before reading input.
If the user hits EOF (*nix: Ctrl-D, Windows: Ctrl-Z+Return), raise EOFError.
On *nix systems, readline is used if available.