itoa
Martijn Faassen
m.faassen at vet.uu.nl
Mon Mar 13 19:12:15 EST 2000
More information about the Python-list mailing list
Mon Mar 13 19:12:15 EST 2000
- Previous message (by thread): itoa
- Next message (by thread): itoa
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
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 And-probably-other-nice-things-there-I'm-missing-ly yours, Martijn -- History of the 20th Century: WW1, WW2, WW3? No, WWW -- Could we be going in the right direction?
- Previous message (by thread): itoa
- Next message (by thread): itoa
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-list mailing list