Adición de descripción del ejercicio

This commit is contained in:
perro tuerto 2023-02-16 14:51:17 -08:00
parent cb66a2bd75
commit bf2ce70fba
1 changed files with 8 additions and 0 deletions

View File

@ -1,3 +1,11 @@
"""
# hello.py
The window that appears should contain a cursor awaiting your input,
but its 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}'.")