input python怎麼用?
Python3.x 中 input() 函數接受一個標準輸入數據,並傳回為 string 類型。
Python2.x 中 input() 相等於 eval(raw_input(prompt)) ,用來取得控制台的輸入。
raw_input() 將所有輸入當作字串看待,傳回字串類型。而 input() 在對待純數字輸入時具有自己的特性,它會傳回所輸入的數字的類型( int, float )。
推薦:《Python教學》
注意:input() 和raw_input() 這兩個函數都能接收字串,但raw_input() 直接讀取控制台的輸入(任何類型的輸入它都可以接收)。而對於 input() ,它希望能夠讀取一個合法的 python 表達式,即你輸入字串的時候必須使用引號將它括起來,否則它會引發一個 SyntaxError 。
除非對 input() 有特別需要,否則一般情況下我們都是建議使用 raw_input() 來與使用者互動。
注意:python3 裡 input() 預設接收到的是 str 類型。
函數語法
input([prompt])
參數說明:
#prompt: 提示訊息
實例
Python2.x : input() 需要輸入python 表達式
>>>a = input("input:") input:123 # 输入整数 >>> type(a) <type 'int'> # 整型 >>> a = input("input:") input:"runoob" # 正确,字符串表达式 >>> type(a) <type 'str'> # 字符串 >>> a = input("input:") input:runoob # 报错,不是表达式 Traceback (most recent call last): File "<stdin>", line 1, in <module> File "<string>", line 1, in <module> NameError: name 'runoob' is not defined <type 'str'> Python2.x: raw_input() 将所有输入作为字符串看待 >>>a = raw_input("input:") input:123 >>> type(a) <type 'str'> # 字符串 >>> a = raw_input("input:") input:runoob >>> type(a) <type 'str'> # 字符串 >>>
以上是input python怎麼用的詳細內容。更多資訊請關注PHP中文網其他相關文章!