How to covert ASCII to integer in Python?

hg hg at nospam.org
Thu Feb 22 05:55:37 EST 2007


John wrote:

> Is there any built in function that converts ASCII to integer or vice
> versa in Python?
> 
> Thanks!
>>> int('10')
10
>>> str(10)
'10'
>>> 




More information about the Python-list mailing list