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'
>>> 

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

Reply via email to