python_casting_string.py:
x
 
x = str("S2")
y = str(3)
z = str(4.0)
print(x)
print(y)
print(z)