Finding the average revenue
Variables can be used to store information and efficiently recover and manipulate stored values.
The revenue of three companies have been stored in three variables: revenue_1
, revenue_2
, and revenue_3
. Let's calculate the total revenue and the average revenue of these companies.
This exercise is part of the course
Introduction to Python for Finance
Hands-on interactive exercise
Have a go at this exercise by completing this sample code.
# Create the variable total and print the total revenue
total = ____
print(total)