前导和尾随“0”给出错误

发布于 2024-08-19 04:32:16 字数 232 浏览 6 评论 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

挥剑断情 2024-08-26 04:32:16

哦亲爱的。 “尾随”零会产生错误,因为 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.

彩虹直至黑白 2024-08-26 04:32:16

前导 0 表示该值是八进制文字,但 09 不是有效的八进制数。

A leading 0 means that the value is an octal literal, but 09 is not a valid octal number.

甲如呢乙后呢 2024-08-26 04:32:16

在第二种情况下 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文