This commit is contained in:
perro tuerto 2023-02-21 13:34:58 -08:00
parent e080f1e24f
commit e08e8fb254
1 changed files with 2 additions and 2 deletions

View File

@ -6,10 +6,10 @@ but its different from the interactive shell, which runs Python instructions
Python Basics as soon as you press enter.
"""
print('Nombre:')
print("Nombre:")
nombre = input()
print(f"Tu nombre es '{nombre}'.")
print(f"Tu nombre tiene '{len(nombre)}' caracteres.")
print('Edad:')
print("Edad:")
edad = input()
print(f"{nombre}, tienes {edad} años.")