Get startedGet started for free

Last quarter's revenue

Your friend at LLM Camp has finalized the financial performance for the last quarter and would like you to store this information in a format that cannot be modified. It will contain their revenue, new customer acquisitions, and cash position.

You've decided to make a tuple containing this information.

This exercise is part of the course

Introduction to Python for Developers

View Course

Exercise instructions

  • Create a tuple called q3_financials containing the following values: 325780, 1041, and 4271599.
  • Print the tuple.

Hands-on interactive exercise

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

# Create a tuple
____

# Print the tuple
____
Edit and Run Code