When I input a choice, with a couple of 'if' statements after it, all the other 'if' statements except for the first one is ignored. For example:
print('1. dostuff')
print('2. stuff')
choice = input('What do you want to do? ')
if choice == '1' or 'dostuff':
domorestuff()
if choice == '2' or 'stuff':
stuff()
Whatever I input, it will always go to 'domorestuff()'.