W3Cschool
恭喜您成為首批注冊(cè)用戶(hù)
獲得88經(jīng)驗(yàn)值獎(jiǎng)勵(lì)
Python3.x 中 input() 函數(shù)接受一個(gè)標(biāo)準(zhǔn)輸入數(shù)據(jù),返回為 string 類(lèi)型。
注意:在 Python3.x 中 raw_input() 和 input() 進(jìn)行了整合,去除了 raw_input( ),僅保留了input( )函數(shù),其接收任意任性輸入,將所有輸入默認(rèn)為字符串處理,并返回字符串類(lèi)型。
input([prompt])
參數(shù)說(shuō)明:
input() 需要輸入python 表達(dá)式:
>>>a = input("input:")
input:123 # 輸入整數(shù)
>>> type(a)
<class 'str'> # 字符串
>>> a = input("input:")
input:w3cschool # 正確,字符串表達(dá)式
>>> type(a)
<class 'str'> # 字符串
Copyright©2021 w3cschool編程獅|閩ICP備15016281號(hào)-3|閩公網(wǎng)安備35020302033924號(hào)
違法和不良信息舉報(bào)電話(huà):173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號(hào)
聯(lián)系方式:
更多建議: