This commit is contained in:
perro tuerto 2023-02-13 12:16:10 -08:00
parent 77400e3c73
commit f6bc9e91b5
1 changed files with 7 additions and 0 deletions

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.")