1.4. Exercise: Greetings ¶
Write a program that asks the user for their name and greets them accordingly.
You can ask for the name and greet the user anyway you like. Note that the \(\color{purple}{\texttt{input()}}\) can take a string argument which it then uses as a prompt.
Sample I/O:
"Hello, what is your name?"
>>> Emre
"Nice to meet you, Emre!"