Sublime Forum

I am confused... how do I get my program to INPUT?

#1

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?

0 Likes

#2

If you’re using the built-in build system, it doesn’t handle input. See here: Build broken? - Python 3 - input()

1 Like