Lesson 18 – Calculating Averages

Average Group Damage


In World of Software Engineering, a dungeoun group fought a dragon boss across seven combat rounds.

Each round dealt a different amount of damage.

Your task is to calculate the average damage per round.

To calculate an average:

1️⃣ Add all the values together.
2️⃣ Divide the total by how many values there are.

There are 7 rounds.
Important:

• Do not modify the given damage values.
• Store your answer in average_damage.
Calculate the average damage
round_one_damage = 240
round_two_damage = 210
round_three_damage = 265
round_four_damage = 250
round_five_damage = 230
round_six_damage = 220
round_seven_damage = 255

# Don't touch above this comment

average_damage = 

# Don't touch below this comment

print(round(average_damage))