What is the average value of the following Python code snippet?

Questions & AnswersCategory: PythonWhat is the average value of the following Python code snippet?
Geek Boy Staff asked 2 years ago

What is the average value of the following Python code snippet?

>>>grade1 = 80
>>>grade2 = 90
>>>average = (grade1 + grade2) / 2

a. 85.0
b. 85.1
c. 95.0
d. 95.1