7 lines
129 B
Python
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)
|