Run ❯
Get your
own Python
server
Result Size:
625 x 565
×
Change Orientation
Change Theme, Dark/Light
Go to Spaces
x = float(1) y = float(2.8) z = float("3") w = float("4.2") print(x) print(y) print(z) print(w)
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