为什么Python中的00100 = 64?

发布于 2024-10-20 18:24:15 字数 288 浏览 3 评论 0原文

为什么像下面的 python 代码一样,00100 等于 64

>>> i = 00100
>>> i
64
>>> type(00100)
<type 'int'>
>>> str(00100)
'64'
>>> str("00100")
'00100'
>>> int(str("00100"))
100
>>> 

Why, like in the following python code, does 00100 equal 64?

>>> i = 00100
>>> i
64
>>> type(00100)
<type 'int'>
>>> str(00100)
'64'
>>> str("00100")
'00100'
>>> int(str("00100"))
100
>>> 

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

青衫负雪 2024-10-27 18:24:15

由于前导零,它是八进制值

http:// www.translatorscafe.com/cafe/units-converter/numbers/calculator/octal-to-decimal/

^计算器(很难总结)

its an octal value because of leading zeros

http://www.translatorscafe.com/cafe/units-converter/numbers/calculator/octal-to-decimal/

^calculator (hard to summarize)

森罗 2024-10-27 18:24:15

在Python(以及其他语言)中,当以0开头的数字被解释为八进制数

In Python (and other languages too) when a number begin with 0 is interpreted as an octal number.

无声静候 2024-10-27 18:24:15

是八进制的。 http://en.wikipedia.org/wiki/Octal

1 是 01,2 是 02, ...,7 是 07,8 是 10(是的!),9 是 011 等等。

It's octal. http://en.wikipedia.org/wiki/Octal

1 is 01, 2 is 02, ..., 7 is 07, 8 is 10 (yes!), 9 is 011, etc.

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