Logo

Programming-Idioms

History of Idiom 79 > diff from v12 to v13

Edit summary for version 13 by :

Version 12

2015-10-29, 14:05:16

Version 13

2015-10-31, 15:07:23

Idiom #79 Convert integer to floating point number

Declare floating point number y and initialize it with the value of integer x .

Idiom #79 Convert integer to floating point number

Declare floating point number y and initialize it with the value of integer x .

Code
y = float(x)
Doc URL
https://docs.python.org/3/library/functions.html#float