diff --git a/aula51.py b/aula51.py new file mode 100644 index 0000000..10112ae --- /dev/null +++ b/aula51.py @@ -0,0 +1,6 @@ +""" +Introdução ao desempacotamento + tuplas (tuple) +""" +nome1, *_ = 'Maria', 'Helena', 'Luiz' +a, b, c = 1, 2, 3 +print(a, b, c)