itoa

Stuart Reynolds S.I.Reynolds at cs.bham.ac.uk
Tue Mar 14 05:55:31 EST 2000


Martijn Faassen wrote:
> 
> Stuart Reynolds <S.I.Reynolds at cs.bham.ac.uk> wrote:
> > Is there an integer to ascii (itoa) function in Python? I need to
> > convert integers into various different bases (but to binary, in
> > particular). Most languages come provided with an itoa-like function but
> > I can't seem to find one in the Python API.
> 
> Replying again -- I'm reading the standard library and you might find
> the string.atoi() function useful if you're converting to different
> bases and such:
> 
> >>> string.atoi("11", 2)
> 3
> 
Thank's. But I want something that goes the other way.


>>> string.itoa(17, 2)
1001

... doesn't seems to be in Python.

Stuart



More information about the Python-list mailing list