您好,登錄后才能下訂單哦!
這篇文章主要介紹python如何使用raw_input()函數,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
raw_input()函數
raw_input():讀取輸入語句并返回string字符串,輸入以換行符結束。
>>> name = raw_input("please input your name:") please input your name:abc >>> print(name) abc >>> type(name) <type 'str'>
注意:input()和raw_input()函數的區別:(1)input支持合法python表格式“abc",字符串必須用引號擴起;否則會報語法錯誤(2) raw_input()將所有輸入作為字符串,返回string,而input()輸入數字時具有自己的特性,返回輸入的數字類型int或float。
#1、語法報錯 >>> name = input("input your name:") input your name:abc Traceback (most recent call last:) File "<stdin>",line 1, in <module> File "<string>",line 1, in <module> NameError: name 'abc' is not defined
#2、正確輸入 >>> name = input("input your name:") input your name:"abc" >>> print(name) abc
#3、input()數據類型 >>> age = input("your age:") your age:20 >>> type(age) <type 'int'>
#4、raw_input() 數據類型均為str >>> age = raw_input("your age:") your age:20 >>> type(age) <type 'str'>
以上是“python如何使用raw_input()函數”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。