Python2中的raw_input() 與 input()

來源:互聯網
上載者:User
這兩個均是 python 的內建函數,通過讀取控制台的輸入與使用者實現互動。但他們的功能不盡相同。舉兩個小例子。

>>> raw_input_A = raw_input("raw_input: ")raw_input: abc >>> input_A = input("Input: ")Input: abcTraceback (most recent call last): File "", line 1, in   input_A = input("Input: ") File "", line 1, in NameError: name 'abc' is not defined >>> input_A = input("Input: ")Input: "abc" >>>

 >>> raw_input_B = raw_input("raw_input: ")raw_input: 123 >>> type(raw_input_B) >>> input_B = input("input: ")input: 123>>> type(input_B)>>>

例子 1 可以看到:這兩個函數均能接收 字串 ,但 raw_input() 直接讀取控制台的輸入(任何類型的輸入它都可以接收)。而對於 input() ,它希望能夠讀取一個合法的 python 運算式,即你輸入字串的時候必須使用引號將它括起來,否則它會引發一個 SyntaxError 。

例子 2 可以看到:raw_input() 將所有輸入作為字串看待,返回字串類型。而 input() 在對待純數字輸入時具有自己的特性,它返回所輸入的數位類型( int, float );同時在例子 1 知道,input() 可接受合法的 python 運算式,舉例:input( 1 + 3 ) 會返回 int 型的 4 。

查看 Built-in Functions ,得知:

input([prompt])  Equivalent to eval(raw_input(prompt)) 

input() 本質上還是使用 raw_input() 來實現的,只是調用完 raw_input() 之後再調用 eval() 函數,所以,你甚至可以將運算式作為 input() 的參數,並且它會計算運算式的值並返回它。

不過在 Built-in Functions 裡有一句話是這樣寫的:Consider using the raw_input() function for general input from users.

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

-------

今天參加某公司的筆試的時候,俺使用了 raw_input() 接受整數(返回的是字串)並再用一行語句返回整型資料。杯具,當時不大確定能用 input() 這個函數!特此記錄。

  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.