Compare commits

...

2 Commits

Author SHA1 Message Date
perro tuerto f6bc9e91b5 Ah 2023-02-13 12:16:10 -08:00
perro tuerto 77400e3c73 Ah 2023-02-13 12:15:48 -08:00
2 changed files with 7 additions and 1 deletions

@ -1 +0,0 @@
Subproject commit df3e21934f79d19feddc791bdc8340641c390eb0

7
exercises/ex01/ex01.py Normal file
View File

@ -0,0 +1,7 @@
print('Nombre:')
nombre = input()
print(f"Tu nombre es '{nombre}'.")
print(f"Tu nombre tiene '{len(nombre)}' caracteres.")
print('Edad:')
edad = input()
print(f"{nombre}, tienes {edad} años.")