From bf2ce70fba7bbd14a0cf25872a7a1945e03eb102 Mon Sep 17 00:00:00 2001 From: perro Date: Thu, 16 Feb 2023 14:51:17 -0800 Subject: [PATCH] =?UTF-8?q?Adici=C3=B3n=20de=20descripci=C3=B3n=20del=20ej?= =?UTF-8?q?ercicio?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- exercises/ex01/ex01.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/exercises/ex01/ex01.py b/exercises/ex01/ex01.py index 69d27e7..bb892ca 100644 --- a/exercises/ex01/ex01.py +++ b/exercises/ex01/ex01.py @@ -1,3 +1,11 @@ +""" +# hello.py + +The window that appears should contain a cursor awaiting your input, +but it’s different from the interactive shell, which runs Python instructions +Python Basics as soon as you press enter. +""" + print('Nombre:') nombre = input() print(f"Tu nombre es '{nombre}'.")