使用八进制数字时令牌无效
我是 python 的初学者,我尝试在脚本中使用八进制数,但是当我尝试它时,它返回错误:
>>> a = 010
SyntaxError: invalid token (<pyshell#0>, line 1)
>>> 01
SyntaxError: invalid token (<pyshell#1>, line 1)
我的代码有问题吗?我正在使用 Python3(并阅读一本 python 2.2 的书)
I'm a beginner in python and I'm trying to use a octal number in my script, but when I try it, it returns me that error:
>>> a = 010
SyntaxError: invalid token (<pyshell#0>, line 1)
>>> 01
SyntaxError: invalid token (<pyshell#1>, line 1)
There's something wrong with my code? I'm using Python3 (and reading a python 2.2 book)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试
0o10
,可能是因为python 3,或者pyshell本身。政治公众人物说,
http://www.python.org/dev/peps/pep-3127/
Try
0o10
, may be because of python 3, or pyshell itself.PEP says,
http://www.python.org/dev/peps/pep-3127/