-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmealplan.py
327 lines (267 loc) · 7.68 KB
/
mealplan.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
#Complete this meal plan
#Reference: https://www.ag.ndsu.edu/publications/food-nutrition/myplate-plans-for-adults
print("Let's help you plan your meals so you can live healthy")
gender = input("What is your gender(MALE or FEMALE): ").lower() #reduce gender input to lowercase
get_age = int(input("How old are you?: ")) #Age should be rounded to nearest ten(10, 20, 30, 40, 50, 60, 70, 80)
age = round(get_age, -1) #Round age to the nearest tens on input.
#Keep activity level between 1 and 60
activity_level = 0
while activity_level <= 0 or activity_level > 60:
try:
activity_level = int(input("What's your activity level in minutes(maximum is 60): "))
if activity_level not in range(1, 61):
raise ValueError
except ValueError:
print("Check your inputs again")
print("Activity Level is between 0 to 60 minutes")
#Given that the age is to the nearest ten.
#On input, round age to the nearest 10
'''
#filter out underage
get_age = []
for age in range(1, 81):
age = int(input("How old are you?: "))
if age < 15:
print("Sorry! Age range not considered. Try again when you are older!")
else:
#age.round()
get_age.append(i)
print("get_age") #test the output.
#Assume age has to be validated
#This validation code is now deprecated.
if age < 18:
print("Sorry! Age range not considered. Try again when you are older!")
for age in range (18, 26):
if gender == male:
if activity_level < 30:
grain = 9 ounces
vege = 3.5 cups
fruits = 2 cups
dairy = 3 cups
protein = 6.5 ounces
elif activity_level > 30 and activity_level < 60:
grain = 10 ounces
vege = 3.5 cups
fruits = 2.5 cups
dairy = 3 cups
protein = 7 ounces
else:
print("Check your inputs again")
print("Activity Level is between 0 to 60 minutes")
elif gender == female:
if activity_level < 30:
grain = 6 ounces
vege = 2.5 cups
fruits = 2 cups
dairy = 3 cups
protein = 5.5 ounces
elif activity_level > 30 and activity_level < 60:
grain = 7 ounces
vege = 3 cups
fruits = 2 cups
dairy = 3 cups
protein = 6 ounces
else:
print("Check your inputs again")
print("Activity Level is between 0 to 60 minutes")
'''
# For age 20
if gender == 'male' and age == 20:
if activity_level < 30:
grain = '9 ounces'
vege = '3.5 cups'
fruits = '2 cups'
dairy = '3 cups'
protein = '6.5 ounces'
elif activity_level > 30 and activity_level <= 60:
grain = '10 ounces'
vege = '3.5 cups'
fruits = '2.5 cups'
dairy = '3 cups'
protein = '7 ounces'
elif gender == 'female' and age == 20:
if activity_level < 30:
grain = '6 ounces'
vege = '2.5 cups'
fruits = '2 cups'
dairy = '3 cups'
protein = '5.5 ounces'
elif activity_level > 30 and activity_level <= 60:
grain = '7 ounces'
vege = '3 cups'
fruits = '2 cups'
dairy = '3 cups'
protein = '6 ounces'
# For age 30
elif gender == 'male' and age == 30:
if activity_level < 30:
grain = '8 ounces'
vege = '3 cups'
fruits = '2 cups'
dairy = '3 cups'
protein = '6.5 ounces'
elif activity_level > 30 and activity_level <= 60:
grain = '10 ounces'
vege = '3.5 cups'
fruits = '2.5 cups'
dairy = '3 cups'
protein = '7 ounces'
elif gender == 'female' and age == 30:
if activity_level < 30:
grain = '6 ounces'
vege = '2.5 cups'
fruits = '1.5 cups'
dairy = '3 cups'
protein = '5 ounces'
elif activity_level > 30 and activity_level <= 60:
grain = '6 ounces'
vege = '2.5 cups'
fruits = '2 cups'
dairy = '3 cups'
protein = '5.5 ounces'
#for age 40
elif gender == 'male' and age == 40:
if activity_level < 30:
grain = '8 ounces'
vege = '3 cups'
fruits = '2 cups'
dairy = '3 cups'
protein = '6.5 ounces'
elif activity_level > 30 and activity_level <= 60:
grain = '9 ounces'
vege = '3.5 cups'
fruits = '2 cups'
dairy = '3 cups'
protein = '6.5 ounces'
elif gender == 'female' and age == 40:
if activity_level < 30:
grain = '6 ounces'
vege = '2.5 cups'
fruits = '1.5 cups'
dairy = '3 cups'
protein = '5 ounces'
elif activity_level > 30 and activity_level <= 60:
grain = '6 ounces'
vege = '2.5 cups'
fruits = '2 cups'
dairy = '3 cups'
protein = '5.5 ounces'
#for age 50
elif gender == 'male' and age == 50:
if activity_level < 30:
grain = '7 ounces'
vege = '3 cups'
fruits = '2 cups'
dairy = '3 cups'
protein = '6 ounces'
elif activity_level > 30 and activity_level <= 60:
grain = '9 ounces'
vege = '3.5 cups'
fruits = '2 cups'
dairy = '3 cups'
protein = '6.5 ounces'
elif gender == 'female' and age == 50:
if activity_level < 30:
grain = '6 ounces'
vege = '2.5 cups'
fruits = '1.5 cups'
dairy = '3 cups'
protein = '5 ounces'
elif activity_level > 30 and activity_level <= 60:
grain = '6 ounces'
vege = '2.5 cups'
fruits = '2 cups'
dairy = '3 cups'
protein = '5.5 ounces'
#for age 60
elif gender == 'male' and age == 60:
if activity_level < 30:
grain = '7 ounces'
vege = '3 cups'
fruits = '2 cups'
dairy = '3 cups'
protein = '6 ounces'
elif activity_level > 30 and activity_level <= 60:
grain = '8 ounces'
vege = '3 cups'
fruits = '2 cups'
dairy = '3 cups'
protein = '6.5 ounces'
elif gender == 'female' and age == 60:
if activity_level < 30:
grain = '5 ounces'
vege = '2 cups'
fruits = '1.5 cups'
dairy = '3 cups'
protein = '5 ounces'
elif activity_level > 30 and activity_level <= 60:
grain = '6 ounces'
vege = '2.5 cups'
fruits = '1.5 cups'
dairy = '3 cups'
protein = '5 ounces'
#for age 70
elif gender == 'male' and age == 70:
if activity_level < 30:
grain = '6 ounces'
vege = '2.5 cups'
fruits = '2 cups'
dairy = '3 cups'
protein = '5.5 ounces'
elif activity_level > 30 and activity_level <= 60:
grain = '8 ounces'
vege = '3 cups'
fruits = '2 cups'
dairy = '3 cups'
protein = '6.5 ounces'
elif gender == 'female' and age == 70:
if activity_level < 30:
grain = '5 ounces'
vege = '2 cups'
fruits = '1.5 cups'
dairy = '3 cups'
protein = '5 ounces'
elif activity_level > 30 and activity_level <= 60:
grain = '6 ounces'
vege = '2.5 cups'
fruits = '1.5 cups'
dairy = '3 cups'
protein = '5 ounces'
#for age 80
elif gender == 'male' and age == 80:
if activity_level < 30:
grain = '6 ounces'
vege = '2.5 cups'
fruits = '2 cups'
dairy = '3 cups'
protein = '5.5 ounces'
elif activity_level > 30 and activity_level <= 60:
grain = '7 ounces'
vege = '3 cups'
fruits = '2 cups'
dairy = '3 cups'
protein = '6 ounces'
elif gender == 'female' and age == 80:
if activity_level < 30:
grain = '5 ounces'
vege = '2 cups'
fruits = '1.5 cups'
dairy = '3 cups'
protein = '5 ounces'
elif activity_level > 30 and activity_level <= 60:
grain = '6 ounces'
vege = '2.5 cups'
fruits = '1.5 cups'
dairy = '3 cups'
protein = '5 ounces'
#filter ages less than 15 and beyond 84
if age < 15:
print("Sorry! Age range not considered. Try again when you are older!")
elif age >= 90:
print("We really need to celebrate you for attaining this age.")
print("However, we never expected someone of such age on here.")
else:
print("As a", gender.upper(), "of", get_age, "years old with an activity level of about",
activity_level, "minutes, your meal plan consists of:\n", grain, "of Grain,\n", vege, "of Vegetables,\n",
fruits, "of Fruits,\n", dairy, "of Dairy, and\n", protein, "of Protein.")
# \n is to add a line break. It should come before the ending apostrophe.