float: interprets its argument as a floating-point number.
If x is a
float, the result is x.
if x is an int, the result is the nearest floating point value to x.
If x is a string, the string is interpreted as a floating-point literal.
With no arguments, float() returns 0.0.

