为什么Python中的00100 = 64?
为什么像下面的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
由于前导零,它是八进制值
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)
在Python(以及其他语言)中,当以0开头的数字被解释为八进制数。
In Python (and other languages too) when a number begin with 0 is interpreted as an octal number.
是八进制的。 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.