From e08e8fb2544cbb949b1f132ad7f274f0688a1ff7 Mon Sep 17 00:00:00 2001 From: perro Date: Tue, 21 Feb 2023 13:34:58 -0800 Subject: [PATCH] Formateo --- exercises/ex01/ex01.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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.")