diff --git a/main.py b/main.py index eb36beb..02ddbbb 100644 --- a/main.py +++ b/main.py @@ -1,5 +1,5 @@ #Cast testing -x, y, z = str(3), int(3), float(3) +x = y = z = str(3) print(type(x), " : ", x) print(type(y), " : ", y) print(type(z), " : ", z)