How can i go back to my main menu. Here is my code. Its not yet done. For example if I chose 1 how can I go back to my main menu without terminating the program.
done = False
while not done:
print('=========================================')
print(' Aria\'s Pet Store Point of Sale System')
print('=========================================')
print('[1] Add Products to Cart')
print('[2] Remove Products to Cart')
print('[3] View Cart')
print('[4] Generate Reciept')
print('[5] Logout')
print('[6] Exit')
print('=========================================')
choice = input('Choice: ')
if choice == '1':
pass
elif choice == '2':
pass
elif choice == '3':
pass
elif choice == '4':
pass
elif choice == '5':
pass
elif choice == '6':
exit(0)
else:
print('Invalid Input')