Files
cursopython2023/aula51.py
2022-10-29 13:37:33 -03:00

7 lines
129 B
Python

"""
Introdução ao desempacotamento + tuplas (tuple)
"""
nome1, *_ = 'Maria', 'Helena', 'Luiz'
a, b, c = 1, 2, 3
print(a, b, c)