I am trying to make something that gives you a menu if you enter in m, and continues if you just press enter.
menu = False
while True:
option = input('Press M for menu, and press enter to continue')
if option == 'm' or 'M':
menu = True
while menu:
print('MENU')
#theres some stuff here but thats not important
else:
print('Continuing...')
But, whenever I run this, it always goes to the menu screen.