itoa() ?

Goh S H python_only at yahoo.com
Fri Jan 11 01:21:33 EST 2002


yvan_charpentier at hotmail.com (yvan) wrote in message news:<9ee55987.0201101329.136d1f4 at posting.google.com>...
> I would like to retrieve a character value from its integer ASCII value.
> 
> For example:
> 72 would give me the letter H
> 
> Thanks

Use built-in function chr

>>> chr(72)
'H'



More information about the Python-list mailing list