Python中获取键盘输入的函数是input(),在Python2和Python3中,input函数有所不同。
raw_input函数
raw_input() 函数从标准输入读取一个行,并返回一个字符串(去掉结尾的换行符):
str=raw_input("Enteryourinput:"); print"Receivedinputis:",str
这将提示你输入任意字符串,然后在屏幕上显示相同的字符串。当我输入"Hello Python!",它的输出如下:
Enteryourinput:HelloPython Receivedinputis:HelloPython
input函数
input() 函数和raw_input() 函数基本可以互换,但是input会假设你的输入是一个有效的Python表达式,并返回运算结果。这应该是两者的区别。
str=input("Enteryourinput:"); print"Receivedinputis:",str
这会产生如下的对应着输入的结果:
Enteryourinput:[x*5forxinrange(2,10,2)] Recievedinputis:[10,20,30,40]原文来自:https://www.py.cn
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
暂无评论内容