Introdução ao desempacotamento + tuplas (tuple)

This commit is contained in:
Luiz Otávio
2022-10-29 13:37:33 -03:00
parent 8ccc25cb6a
commit 8fc44d610f

6
aula51.py Normal file
View File

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