37,742
社区成员
发帖
与我相关
我的任务
分享Python 3.2.3 (default, Apr 11 2012, 07:15:24) [MSC v.1500 32 bit (Intel)] on win32
Type "copyright", "credits" or "license()" for more information.
>>> x = 100L
SyntaxError: invalid syntax
>>> x = 10000000000000000000000000000000000000
>>> x
10000000000000000000000000000000000000
>>> repr(x)
'10000000000000000000000000000000000000'
>>> Python 2.7.3 (default, Apr 10 2012, 23:31:26) [MSC v.1500 32 bit (Intel)] on win32
Type "copyright", "credits" or "license()" for more information.
>>> x = 100L
>>> print x
100
>>>