Write a program to find the average of three
numbers 39,45 and 62.
Answers
Answered by
0
print((39+45+62)/3)
(or)
import statistics
inp = [int(i) for i in input().split()]
print(statistics.mean(inp))
Answered by
0
Answer:
Please, follow me =follow U back ,please follow me
Similar questions