W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗(yàn)值獎勵
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
類型。
input([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'> # 字符串
>>>
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報(bào)電話:173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: