Computer Science, asked by mvyverma, 4 months ago

write a program to input 5 numbers and find the average​

Answers

Answered by jai696
1

\large\mathsf\color{pink}{Solution\: using\: python\: 3}

nums = [int(n) for n in input("enter 5 nums: ").split()]

print(f"average: {sum(nums) / len(nums)}")

\large\mathsf\color{lightgreen}useful?\: \color{white}\longrightarrow\: \color{orange}brainliest!

Similar questions