LearningPy/main.py

7 lines
94 B
Python

#Python unpack testing
numbers = [1, 2, 3]
x, y, z = numbers
print(x)
print(y)
print(z)