Advertisement
Guest User

Untitled

a guest
Nov 12th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 4.03 KB | None | 0 0
  1. # Veg food special meal
  2. def special_meal1(day):
  3.     special_meal1 = {
  4.         'MONDAY' : 'Lor Mee',
  5.         'TUESDAY' : 'Laksa',
  6.         'WEDNESDAY' : 'Mee Rubus',
  7.         'THURSDAY' : 'Kway Chap',
  8.         'FRIDAY' : 'Prawn Noodle Soup',
  9.         'SATURDAY' : 'Fried Rice',
  10.         'SUNDAY' : 'Bee Hoon'
  11.     }
  12.  
  13.     return special_meal1[day]
  14.  
  15. def date_special_meal1(day):
  16.     date_special_meal1 = {
  17.         0 : 'Lor Mee',
  18.         1 : 'Laksa',
  19.         2 : 'Mee Rubus',
  20.         3 : 'Kway Chap',
  21.         4 : 'Prawn Noodle Soup',
  22.         5 : 'Fried Rice',
  23.         6 : 'Bee Hoon'
  24.     }
  25.    
  26.     return date_special_meal1[day]
  27.  
  28. # mini wok special meal
  29. def special_meal2(day):
  30.     special_meal2 = {
  31.         'MONDAY' : 'Black Pepper Chicken Rice',
  32.         'TUESDAY' : 'Ginger & Onion Pork Rice',
  33.         'WEDNESDAY' : 'Pan Fried Chicken Rice',
  34.         'THURSDAY' : 'Ginger & Onion Fish Fried Rice',
  35.         'FRIDAY' : 'Sweet & Sour Fish Fillet Rice',
  36.         'SATURDAY' : 'Chicken Fried Rice',
  37.         'SUNDAY' : 'Fried rice with Filet'
  38. }
  39.  
  40.     return special_meal2[day]
  41.  
  42. def date_special_meal2(day):
  43.     date_special_meal2 = {
  44.         0 : 'Black Pepper Chicken Rice',
  45.         1 : 'Ginger & Onion Pork Rice',
  46.         2 : 'Pan Fried Chicken Rice',
  47.         3 : 'Ginger & Onion Fish Fried Rice',
  48.         4 : 'Sweet & Sour Fish Fillet Rice',
  49.         5 : 'Chicken Fried Rice',
  50.         6 : 'Fried rice with Filet'
  51. }
  52.  
  53.     return date_special_meal2[day]
  54.  
  55. # Chicken Rice Special Meal
  56. def special_meal3(day):
  57.     special_meal3 = {
  58.         'MONDAY' : 'Bean Spout',
  59.         'TUESDAY' : 'Chicken Gut',
  60.         'WEDNESDAY' : 'Chicken Hor Fan',
  61.         'THURSDAY' : 'Roasted Chicken Noodle',
  62.         'FRIDAY' : 'Steamed Chicken Noodle',
  63.         'SATURDAY' : 'Lemon Chicken Rice',
  64.         'SUNDAY' : 'Curry Chicken Noodle'
  65. }
  66.     return special_meal3[day]
  67.  
  68. def date_special_meal3(day):
  69.     date_special_meal3 = {
  70.         0 : 'Bean Spout',
  71.         1 : 'Chicken Gut',
  72.         2 : 'Chicken Hor Fan',
  73.         3 : 'Roasted Chicken Noodle',
  74.         4 : 'Steamed Chicken Noodle',
  75.         5 : 'Lemon Chicken Rice',
  76.         6 : 'Curry Chicken Noodle'
  77. }
  78.     return date_special_meal3[day]
  79.  
  80. # Handmade Noodles Special Meal
  81. def special_meal4(day):
  82.     special_meal4 = {
  83.         'MONDAY' : 'Sliced Fish Bee Hoon',
  84.         'TUESDAY' : 'Fried Fish Bee Hoon',
  85.         'WEDNESDAY' : 'Fried Fish Soup',
  86.         'THURSDAY' : 'Sliced Fish Soup',
  87.         'FRIDAY' : 'Fish Porridge',
  88.         'SATURDAY' : 'U Mian',
  89.         'SUNDAY' : 'Ban Mian'
  90.     }
  91.  
  92.     return special_meal4[day]
  93.  
  94. def date_special_meal4(day):
  95.     date_special_meal4 = {
  96.         0 : 'Sliced Fish Bee Hoon',
  97.         1 : 'Fried Fish Bee Hoon',
  98.         2 : 'Fried Fish Soup',
  99.         3 : 'Sliced Fish Soup',
  100.         4 : 'Fish Porridge',
  101.         5 : 'U Mian',
  102.         6 : 'Ban Mian'
  103.     }
  104.  
  105.     return date_special_meal4[day]
  106.  
  107. # McDonald's Menu
  108. def special_meal5(day):
  109.     special_meal5 = {
  110.         'MONDAY' : 'Buttermilk Crispy Chicken Burger',
  111.         'TUESDAY' : 'The Original Angus Burger',
  112.         'WEDNESDAY' : 'Classic Angus Cheese Burger',
  113.         'THURSDAY' : 'Grilled Chicken Salad',
  114.         'FRIDAY' : 'Grilled Chicken McWrap',
  115.         'SATURDAY' : 'Big Mac',
  116.         'SUNDAY' : 'McSpicy'
  117.     }
  118.  
  119.     return special_meal5[day]
  120.  
  121. def date_hr_special_meal5(day,timehr):
  122.     date_pm_special_meal5 = {
  123.         0 : 'Buttermilk Crispy Chicken Burger',
  124.         1 : 'The Original Angus Burger',
  125.         2 : 'Classic Angus Cheese Burger',
  126.         3 : 'Grilled Chicken Salad',
  127.         4 : 'Grilled Chicken McWrap',
  128.         5 : 'Big Mac',
  129.         6 : 'McSpicy'
  130.     }
  131.  
  132.     date_am_special_meal5 = {
  133.         0 : 'Egg McMuffins',
  134.         1 : 'Sausage McMuffins with Egg',
  135.         2 : 'Sausage McMuffins',
  136.         3 : 'Sausage McGriddles',
  137.         4 : 'Grilled Chicken McWrap3',
  138.         5 : 'Cheese McGriddles',
  139.         6 : 'Hotcakes'
  140.     }
  141.  
  142.     if timehr >= 11:
  143.         return date_pm_special_meal5[day]
  144.     else:
  145.         return date_am_special_meal5[day]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement