6 lines
113 B
Python
6 lines
113 B
Python
#Cast testing
|
|
x = y = z = str(3)
|
|
print(type(x), " : ", x)
|
|
print(type(y), " : ", y)
|
|
print(type(z), " : ", z)
|