Get your own Python server Result Size: 625 x 565
x
 
x = str("s1")
y = str(2)
z = str(3.0)
print(x)
print(y)
print(z)
s1
2
3.0