Python中出现name 'raw_input' is not defined

❌NameError: name ‘raw_input’ is not defined ❌
按照课本练习时,出现这个错误提示
首先以为是没有调入相应的库
查资料发现不是:
2.x版本的输入函数为raw_input,在高级版本环境下就会报错如开头,该函数未定义。
在3.x版本中用input()代替raw_input()。就可以解决这个问题。

Python中出现name 'raw_input' is not definedPython中出现name 'raw_input' is not defined weixin_45581345 发布了4 篇原创文章 · 获赞 0 · 访问量 48 私信 关注
上一篇:Tomcat 8 Invalid character found in the request target. The valid characters are defined in RFC 3986


下一篇:[Vue warn]: Failed to mount component: template or render function not defined.