Integer -> String

Tim Peters tim_one at email.msn.com
Wed Oct 18 12:49:30 EDT 2000


[joonas]
> How can i convert integer into srtring

str(42) == "42"

> and string into integer.

int("42") == 42

now-guess-what-"float()"-does!-ly y'rs  - tim






More information about the Python-list mailing list