Get startedGet started for free

Creating numeric variables

Mastering variables is essential for effective coding and problem-solving in Python. By assigning values to variables, you can easily reference and update these objects throughout your code. This approach not only makes your code more organized and readable but also enhances its flexibility, allowing for quick adjustments and clear data handling.

This exercise is part of the course

Introduction to Python for Finance

View Course

Exercise instructions

  • Assign 229.23 to the variable revenue_1.
  • Assign 177.86 to the variable revenue_2.
  • Assign 89.95 to the variable revenue_3.

Hands-on interactive exercise

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

# Assign 229.23 to revenue_1
____

# Assign 177.86 to revenue_2
____

# Assign 89.95 to revenue_3
____
Edit and Run Code