Em Sáb, 2006-03-18 às 05:12 -0800, Lad escreveu:
> How can I covert in Python  a variable of a long type to variable of
> Integer type?

You can do "int(variable)", but it can't be always done (for example,
when variable > MAX_INT):

>>> a=10L
>>> a
10L
>>> int(a)
10
>>> a=1000000000000000000000000000000000000000000000000000000000000000L
>>> a
1000000000000000000000000000000000000000000000000000000000000000L
>>> int(a)
1000000000000000000000000000000000000000000000000000000000000000L


-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to