raw_input() 在 python 3.1 中已弃用?
可能的重复:
简单:如何在 3.1 中使用 Raw_input
在旧版本中 使用 3.1 中的 Raw_input我可以用这个函数输入数据
Possible Duplicate:
Easy: How to use Raw_input in 3.1
in old style i can entering data with this function
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
raw_input 现在是每个 http://docs.python 的
input
.org/dev/py3k/whatsnew/3.0.htmlraw_input is now
input
per http://docs.python.org/dev/py3k/whatsnew/3.0.htmlraw_input
已重命名为input
。对输入进行评估
的 2.xinput
已被删除。raw_input
has been renamed toinput
. The 2.xinput
, whicheval
'd the input, was removed.您应该改用
input()
,它使用 2.x 中raw_input()
的行为。You should use
input()
instead, which uses the behavior ofraw_input()
from 2.x.在Python 3中你使用输入函数
in Python 3 you use input function