Python input() 函數(shù)

2020-08-28 10:52 更新

Python input() 函數(shù)

Python 內(nèi)置函數(shù) Python 內(nèi)置函數(shù)

Python3.x 中 input() 函數(shù)接受一個標(biāo)準(zhǔn)輸入數(shù)據(jù),返回為 string 類型。

Python2.x 中 input() 相等于 eval(raw_input(prompt)) ,用來獲取控制臺的輸入。

raw_input() 將所有輸入作為字符串看待,返回字符串類型。而 input() 在對待純數(shù)字輸入時(shí)具有自己的特性,它返回所輸入的數(shù)字的類型( int, float )。

注意:input()raw_input() 這兩個函數(shù)均能接收 字符串 ,但 raw_input() 直接讀取控制臺的輸入(任何類型的輸入它都可以接收)。而對于 input() ,它希望能夠讀取一個合法的 python 表達(dá)式,即你輸入字符串的時(shí)候必須使用引號將它括起來,否則它會引發(fā)一個 SyntaxError 。除非對 input() 有特別需要,否則一般情況下我們都是推薦使用 raw_input() 來與用戶交互。注意:python3 里 input() 默認(rèn)接收到的是 str 類型。

函數(shù)語法

input([prompt])

參數(shù)說明:

  • prompt: 提示信息

實(shí)例

Python2.x: input() 需要輸入 python 表達(dá)式:

>>>a = input("input:")
input:123 # 輸入整數(shù)
>>> type(a)
<type 'int'> # 整型
>>> a = input("input:")
input:"w3cschool" # 正確,字符串表達(dá)式
>>> type(a)
<type 'str'> # 字符串
>>> a = input("input:")
input:w3cschool # 報(bào)錯,不是表達(dá)式
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "<string>", line 1, in <module>
NameError: name 'w3cschool' is not defined
<type 'str'>

Python2.x: raw_input() 將所有輸入作為字符串看待:

>>>a = raw_input("input:")
input:123
>>> type(a)
<type 'str'> # 字符串
>>> a = raw_input("input:")
input:w3cschool
>>> type(a)
<type 'str'> # 字符串
>>>

Python 內(nèi)置函數(shù) Python 內(nèi)置函數(shù)


以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號