在 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.