Result Size: 625 x 571
demo_string.py:
x
 
x = str("s1")
y = str(2)
z = str(3.0)
print(x)
print(y)
print(z)
C:\Users\My Name>python demo_string.py
s1
2
3.0