Page 60 - PYTHON-12
P. 60

elif (userInput==2):

                       Customer()
                   elif (userInput==3):

                       Food()
                   elif (userInput==4):

                       OrderFood()
                   elif (userInput==5):

                       View()
                   else:

                       print("Enter correct choice. . . ")
               def runAgain():

                   runAgn=input("\nwant to run Again Y/N")
                   while runAgn.lower()=='y':

                       if(platform.system()=="Windows"):
                           print(os.system('cls'))

                       else:

                           print(os.system('clear'))
                       MenuSet()
                       runAgn=input("\nwant to run Againy/n")

                       print("Good Bye ... HAVE A NICE DAY")

                       exit()


               MenuSet()
               runAgain()
   55   56   57   58   59   60   61   62   63   64   65