how to use a while loop in an if/elif/else statement
print("welcome")
while 1 != 2:
greeting = str(input("Hi, how are you?")
if greeting == ("bad"):
print("Don't worry!")
elif greeting == ("good"):
print("That's great!")
else:
print("Got it.)
# The greeting will continuously loop and letting you answer the question.