PROJECTS
PROJECTS
PROJECTS
[INTERNAL] [EXTERNAL]
DECLARATION
I hereby declare that the project entitled “Food Order
System using Python MySql” did during my Computer Science
lab practical classes. This project is submitted for the award of
Intermediate of Science, Computer Science Subject as
prescribed by CBSE.
try:
userInput = int(input("Please Select an above option: "))
except ValueError:
exit("\nHey! That's Not A Number")
else:
print("\n")
if userInput == 1:
Employee()
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":
os.system("cls")
else:
os.system("clear")
MenuSet()
runAgn = input("\nWant to run again? (Y/N): ")
MenuSet()
print("Good Bye... HAVE A NICE DAY")