Curso_Intensivo_de_PYTHON/chapter_07/greeter.py
2023-06-02 17:22:53 +02:00

5 lines
169 B
Python

prompt = "If you tell us who you are, we can personalize the messages you see."
prompt += "\nWhat is your first name? "
name = input(prompt)
print(f"\nHello, {name}!")