Logo

Programming-Idioms

History of Idiom 55 > diff from v57 to v58

Edit summary for version 58 by raphael:
[Python] s

Version 57

2017-09-05, 20:19:15

Version 58

2017-10-10, 17:22:13

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
s = str(i)
Code
str(100) + "RJS"