Computer Science, asked by ayushisawalakhe, 7 months ago

write a python program to create a list of 10 numbers and calculate maximum minimum and average of all numbers

Answers

Answered by gaganadithyareddy9
2

Answer:

Hey! This is in python...

nums = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]

avg = sum(nums) / len(nums)

print("Maximum value from the list = max(nums)) print("Minimum value from the list = ", min(nums)) ("Average of all number from the list = ", avg)

# HOPE THIS HELPS YOU!!

Similar questions