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('请输入:')print a请输入:str str
原因就在于,input 只能接受整型输入:
a = input('请输入:')print type(a)请输入:10<type 'int'>
而 raw_input 可以接受字符串输入:
立即学习“Python免费学习笔记(深入)”;
a = raw_input('请输入:')print type(a)请输入:str <type 'str'>
以上就是python:中input()与raw_input()的详解的详细内容,更多请关注php中文网其它相关文章!
python怎么学习?python怎么入门?python在哪学?python怎么学才快?不用担心,这里为大家提供了python速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号