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}!")
It just stops after “what is your name?”
How do I test this? How do I get my program to work?