Get startedGet started for free

Creating a tuple

As you build your recipe scaler, you may need to convert between units. Let's say you need to store standard conversion factors that should never change (like cups to milliliters: 1 cup = 240 ml). A great way to store this is using tuples to represent the conversion pair. Tuples are perfect for this because they're immutable - conversion factors won't accidentally change during calculations.

This exercise is part of the course

Introduction to Python for Developers

View Course

Exercise instructions

  • Create a tuple called cup_conversion that stores the values 1 and 240.
  • Check the type of cup_conversion.

Hands-on interactive exercise

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

# Create a tuple
cup_conversion = ____

# Check the type
print(____)
Edit and Run Code