今天在巩固python基础的路上,发现了一个在八进制的表示在不同的python版本的区别。
在python3里,用户不可以输入以0开头的数字。
C:\Users>python3
Python 3.6.5 (v3.6.5:f59c0932b4, Mar 28 2018, 17:00:18) [MSC v.1900 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> a = 032
File "<stdin>", line 1
a = 032
^
SyntaxError: invalid token
但是在python2中,是可以的,并且会自动当成八进制的数处理,等价于032=0o32
C:\Users>python
Python 2.7.3 (default, Apr 10 2012, 23:31:26) [MSC v.1500 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> a=032
>>> print(a)
26
并且当你使用的不是1~7之间的数字时,python2里会自动处理为10进制的数
C:\Users>python
Python 2.7.3 (default, Apr 10 2012, 23:31:26) [MSC v.1500 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> b=39
>>> print(b)
39
可能由于这样看上去太乱了,所以在python3中做了限制,不可以以0开头了。