How do i stop a while loop after correct input has been given and continue to run the code after it?
option_list = ["add", "subtract", "multiply", "divide"]
#^^ list^^
option = input("Do you want to add,subtract, multiply, or divide? Choice: ")
#^^ or...