From 104f56cb40d78759b7a160677cf7592ba54f4a4d Mon Sep 17 00:00:00 2001 From: "Juan M. Ley" Date: Tue, 3 Feb 2026 19:02:00 -0600 Subject: [PATCH] day6 full --- day6/exercises2.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/day6/exercises2.py b/day6/exercises2.py index 5197dc3..ffc0610 100644 --- a/day6/exercises2.py +++ b/day6/exercises2.py @@ -1,3 +1,5 @@ +# Parte 1 + tupla = () hmnos = ("Juanito",) hmnas = ("Ana",) @@ -11,7 +13,7 @@ miembs_fam = sibs print(miembs_fam) -# PT2 +# Parte 2 hermanos, hermana, *padres = miembs_fam print(hermanos, hermana, padres)