I am trying to elicit two responses depending on user input, and can't get it to work. It just keeps printing "Correct, seems you're smarter than I thought..."
. Any help would be much appreciated, thank you
print ("Welcome to UTOPIA")
river= ""
while not river:
river = input ("\n\n\n\nYou come across a raging river, what do you do? ")
if river == "swim" or "swim through it":
print ("Correct, seems you're smarter than I thought...")
elif river == "walk through it" or "walk through":
print ("You cant walk through such a big river... silly!")
else:
print ("Well, sensible suggestions now...")