亚洲免费一级高潮_欧美极品白嫩视频在线_中国AV片在线播放_欧美亚洲日韩欧洲在线看

您現(xiàn)在所在的位置:首頁 >學(xué)習(xí)資源 > Python全棧+人工智能入門教材 > Python基礎(chǔ)入門教程55:Python input() 函數(shù)

Python基礎(chǔ)入門教程55:Python input() 函數(shù)

來源:奇酷教育 發(fā)表于:

Python基礎(chǔ) Python教程 Python入門

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

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

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

  注意:input() 和 raw_input() 這兩個函數(shù)均能接收 字符串 ,但 raw_input() 直接讀取控制臺的輸入(任何類型的輸入它都可以接收)。而對于 input() ,它希望能夠讀取一個合法的 python 表達(dá)式,即你輸入字符串的時候必須使用引號將它括起來,否則它會引發(fā)一個 SyntaxError 。

  除非對 input() 有特別需要,否則一般情況下我們都是推薦使用 raw_input() 來與用戶交互。

  注意:python3 里 input() 默認(rèn)接收到的事 str 類型。

  函數(shù)語法

  input([prompt])

  參數(shù)說明:

  無

  實(shí)例

  input() 需要輸入 python 表達(dá)式

  >>>a = input("input:") input:123 # 輸入整數(shù) >>> type(a) <type 'int'> # 整型 >>> a = input("input:") input:"runoob" # 正確,字符串表達(dá)式 >>> type(a) <type 'str'> # 字符串 >>> a = input("input:") input:runoob # 報(bào)錯,不是表達(dá)式 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'>raw_input() 將所有輸入作為字符串看待

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