From 8fc44d610fd97bbe628ab6c71f727042075efe87 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luiz=20Ot=C3=A1vio?= Date: Sat, 29 Oct 2022 13:37:33 -0300 Subject: [PATCH] =?UTF-8?q?Introdu=C3=A7=C3=A3o=20ao=20desempacotamento=20?= =?UTF-8?q?+=20tuplas=20(tuple)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- aula51.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 aula51.py 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)