[Tutor] What does L at last stands for when 10 ** 30

Joel Goldstick joel.goldstick at gmail.com
Fri May 4 16:07:22 CEST 2012


On Fri, May 4, 2012 at 9:57 AM, Santosh Kumar <sntshkmr60 at gmail.com> wrote:
> I am doing:
>>>> power = 10 ** 30
>>>> power
>
> and the output:
>>>> 10000...L          # what does L represent
>
> interesting thing is L doesn't shows when I do a: print power
> _______________________________________________
> Tutor maillist  -  Tutor at python.org
> To unsubscribe or change subscription options:
> http://mail.python.org/mailman/listinfo/tutor

Long integer.  You can learn more here:
http://docs.python.org/library/stdtypes.html#numeric-types-int-float-long-complex


-- 
Joel Goldstick


More information about the Tutor mailing list