Get your own Python server Result Size: 625 x 565
x
 
x = float(1)
y = float(2.8)
z = float("3")
w = float("4.2")
print(x)
print(y)
print(z)
print(w)
1.0
2.8
3.0
4.2