前导和尾随“0”给出错误
random.randint(50,9)
或
random.randint(5,09)
给出错误,尽管只是
random.randint(5,9)
..有效!
如果不将其转换为字符串或使用 xf 格式,Python 中不允许使用前导零和尾随零吗?
random.randint(50,9)
or
random.randint(5,09)
give errors, although just
random.randint(5,9)
..works!
Leading and trailing zero's aren't allowed in python without converting it to string or using x.f formatting?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
哦亲爱的。 “尾随”零会产生错误,因为
randint
的第一个参数应小于第二个。与许多其他语言一样,在 python-2.x 中,前导零用于表示八进制数。
oh, dear. "Trailing" zero gives error because first argument to
randint
should be smaller than the second.Leading zeros are used to represent octal numbers in python-2.x as in many other languages.
前导
0
表示该值是八进制文字,但09
不是有效的八进制数。A leading
0
means that the value is an octal literal, but09
is not a valid octal number.在第二种情况下 09 不是有效的十进制整数
在第一种情况下 - 你必须先给函数指定较小的数字
09 is not a valid dec integer in the second case
and in the first case - you have to give the function the lower number first