forked from ufssd/GitWorkshop2022
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
37 lines (32 loc) · 816 Bytes
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
from order import Order
print('*** Welcome to Chick-Fil-A ***')
option = 1
myOrder = Order()
while option != 0:
print('')
print('1. Lemonade')
print('2. Coke')
print('3. Cold Brew Coffee')
print('4. Fries')
print('5. Salad')
print('6. Wrap')
print('7. Chicken Strips')
print('8. Chicken Nuggies')
print('9. Kid\'s Meal')
print('10. Mac n\' Cheese')
print('11. Chicken Biscuit')
print('12. Fruit Cup')
print('13. Shake')
print('14. Frosted Lemonade')
print('15. Cookie')
print('16. Chicken Sandwich')
print('0. Done')
print('Select an option: ')
option = int(input())
if option == 0:
myOrder.print_order()
break
if option == 1:
myOrder.add_lemonade()
if option == 8:
myOrder.add_nuggies()