informal representation of long integers

Randall Kern randy at spoke.net
Fri Jan 26 11:54:59 EST 2001


Using Python 1.5.2:

>>> str(10L)
'10L'
>>> repr(10L)
'10L'

Just curious why the 'informal' representation of 10L is '10L', rather than
'10'.
-Randy





More information about the Python-list mailing list