Question: 1 . Ask user to enter three more test scores 2 . Calculate the total average of all scores 3 . Display using format keyword

1. Ask user to enter three more test scores
2. Calculate the total average of all scores
3. Display using format keyword and f string rounded to 2 decimal places
```
[] # Activity 1.4
# Get three test scores and assign them to the
# test1, test2, and test3 variables.
test1= float(input('Enter the first test score: '))
test2= float(input('Enter the second test score: '))
test3= float(input('Enter the third test score: '))
# Calculate the average of the three scores
# and assign the result to the average variable.
average =(test1+ test2+ test3)/3.0
# Display the average.
print('The average score is', average)
```
1 . Ask user to enter three more test scores 2 .

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!