I'm trying to get user input on something but it's not very user friendly to have to put quotations each time you type an answer.
loop = True
while loop:
user_input = input("say hello \n")
if user_input == "hello":
print("True")
I want to be able to just type hello and not have to add the quotations (ex. "hello").