This commit is contained in:
2026-02-03 18:48:39 -06:00
parent ed25b07fa9
commit 64db8b6993
2 changed files with 55 additions and 0 deletions

13
day6/exercices1.py Normal file
View File

@@ -0,0 +1,13 @@
tupla = ()
hmnos = ("Juanito",)
hmnas = ("Ana",)
sibs = hmnos + hmnas
print(f"num hermanos: {len(sibs)}")
sibs += ("JuanLH", "Maria")
miembs_fam = sibs
print(miembs_fam)