4th February 2023 def mean(numbers): return sum(numbers) / len(numbers) numbers = [1, 2, 3, 4, 5] mean_value = mean(numbers) print(mean_value) # Output: 3.0 Python Add new comment You must have JavaScript enabled to use this form. Your name Email The content of this field is kept private and will not be shown publicly. Comment Leave this field blank
Add new comment