Computer Science, asked by harimuraliskumar, 2 months ago

writie a program to find the average of 3 numbers
using python

Answers

Answered by profdambaldor
0

Answer:

def average(n1, n2, n3):  

total = int(n1) + int(n2) + int(n3)  

Avg = total/3  

return Avg  

 

print(average(1,2,3))

Explanation:

Similar questions