python:中input()與raw_input()的詳解

黄舟
發布: 2017-10-07 11:40:33
原創
1701 人瀏覽過


實驗

a = input('请输入:')
print a
登入後複製

如果輸入字串,則馬上報錯:

请输入:str  
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "<string>", line 1, in <module>
登入後複製

但是如果輸入整數,則不會報錯:

请输入:1010
登入後複製

如果把input 改成raw_input ,則可以正常記錄鍵盤輸入的字串:

a = raw_input(&#39;请输入:&#39;)print a
登入後複製
请输入:str
str
登入後複製

原因

原因就在於, input 只能接受整數輸入:

a = input(&#39;请输入:&#39;)print type(a)
登入後複製
请输入:10<type &#39;int&#39;>
登入後複製

raw_input 可以接受字串輸入:

a = raw_input(&#39;请输入:&#39;)print type(a)
登入後複製
请输入:str
<type &#39;str&#39;>
登入後複製

#

以上是python:中input()與raw_input()的詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板