Computer Science, asked by bulbusaha1234, 2 months ago

Write a python program to find the Average of 5

numbers. Eg: (12+55+23+45+44)/5​

Answers

Answered by kasaranenisathw
9

Explanation:

a=12

b=55

c=23

d=45

e=44

print((a+b+c+d+e)/5)

Answered by rawat64
1

Explanation:

(a+b+c+d+e)/5 is the answer

Similar questions