Get startedGet started for free

Checking ingredients

You're building your recipe scaler for the tomato and basil pasta party! Before scaling up the recipe, you need to check if you have enough of each ingredient in your pantry. The ingredients_needed dictionary contains the quantities needed, and the pantry_stock dictionary contains what you currently have. You'll use conditional statements to determine whether you can proceed with the full recipe, need to buy more ingredients, or should scale down the party size.

This exercise is part of the course

Introduction to Python for Developers

View Course

Hands-on interactive exercise

Have a go at this exercise by completing this sample code.

# Check if you have enough tomatoes for the full party
____ pantry_stock["tomatoes"] ____ ingredients_needed["tomatoes"]:
    ____
Edit and Run Code