Logo

Programming-Idioms

History of Idiom 55 > diff from v58 to v59

Edit summary for version 59 by programming-idioms.org:
Restored version 57

Version 58

2017-10-10, 17:22:13

Version 59

2017-10-12, 19:51:45

Idiom #55 Convert integer to string

Create the string representation s (in radix 10) of integer value i.

Illustration

Idiom #55 Convert integer to string

Create the string representation s (in radix 10) of integer value i.

Illustration
Extra Keywords
int base radix conversion
Extra Keywords
int base radix conversion
Code
str(100) + "RJS"
Code
s = str(i)