So, I'm learning how to program in Python, and so far I think I'm doing okay. While trying a SWAT type of game, I made this.
Code:
def chooseEntryway():
    room = ''
    print('Which entryway will you take? The window, the back door, or the front door?')
    room = input()
    room = str(room)
    if room != 'window' or 'the back door' or 'the front door' or 'the window' or 'front door' or 'back door':
...