diff --git a/exercises/ex01/ex01.py b/exercises/ex01/ex01.py index bb892ca..ca880cb 100644 --- a/exercises/ex01/ex01.py +++ b/exercises/ex01/ex01.py @@ -6,10 +6,10 @@ but it’s 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.")