So I'm testing out a Search History program on Python and its pretty basic, you search 5 different things one after another and then it asks whether or not you would like to show your Browsing History, so if you type in "yes" it displays it, but if I put "no" it still displays it.
So I have added several different "ifs, elif, and else" functions but none have worked
print "Check Browsing History?"
Check = raw_input()
if Check == "Yes" or "Yeah" or "Sure" or "yes" or "yeah" or "sure":
print Search1 + "," ,
print Search2 + "," ,
print Search3 + "," ,
print Search4 + "," ,
print Search5 + "."
else:
if Check == "No" or "Nope":
print"OK"
When its "yes" it's supposed to display the 5 recent Search History and when its "no" it just says "ok" and the program ends.
Instead, when you type "yes" it does display the 5 recent Search History's but it does the same thing if you type "no"
There are no Error messages because the program "works"