Which of the following would be a good name for function that takes how hungry Christine is and returns amount food she eats lunch?
The function could be called `food_for_lunch`. The following example shows how such a function could be defined:
```python
def food_for_lunch(hunger_level):
if hunger_level <= 5:
return 'salad'
elif hunger_level <= 7:
return 'sandwich'
elif hunger_level <= 9:
return 'pizza'
else:
return 'huge pizza'
```
Snacks
- What is Cameron boyce favorite food?
- What type of foods does sam gribley eat?
- 1 pound of peanuts feeds how many person?
- Can Skittles give you food poisoning?
- How much fat and carb does tuna salad with pretzel chips have?
- What eats tilapia?
- How much does a hippopotamus eat food per pound of body weight each day?
- How many skittle in a fun size bag?
- What happens if you omit the salt from banana bread?
- What are the products of Pepsi?
Snacks
- Appetizers
- Cheeses
- Chili Recipes
- Condiments
- Dips
- Fondue Recipes
- Grains & Potatoes Recipes
- Jello Recipes
- Salad Recipes
- Salsa Recipes
- Sauces
- Snacks
- Soup Recipes
- Spreads
- Stocks
- Vegetable Recipes


