getting value from user
user_input = input("You decide: ")
#function that will print certain phrase based on user value also has a error message for wrong value(need loop for wrong value entered)
if user_input == 'A' or user_input == 'a':
print("With Uncle Sam in your corner you shall not fail...or I could be wrong?\nEither way lets get that Clock rolling")
elif user_input == 'Q' or user_input == 'q':
mess = ("Well to heck with ya then!")
print(mess)
elif user_input == 'B' or user_input == 'b':
print("May Mother Russia led you to a brighter future!\nLets begin shall we")
elif user_input == 'C' or user_input == 'c':
print("Ahhhh..the lonley Red State....well all I can say is either they follow you or get regret ever doubting you!!\nBegin your reign")
else:
print("Wrong Value!!!")
trying to loop the statement that if the user inputs a wrong value it will just start over. I am stuck and close to tossing my computer out, I know there is a simple fix but I can not seem to find it.