LearningPy/main.py

6 lines
129 B
Python
Raw Normal View History

2022-11-30 15:54:33 +00:00
#Cast testing
2022-11-30 15:55:53 +00:00
x, y, z = str(3), int(3), float(3)
2022-11-30 15:54:33 +00:00
print(type(x), " : ", x)
print(type(y), " : ", y)
print(type(z), " : ", z)