0
How to Code for calculate the average numbers in python
Help me to solve this problem
4 Respuestas
+ 3
First show your try.
+ 3
# Let my_list be a list of numbers. Then:
avg = sum(my_list)/len(my_list)
+ 1
Here you go, check it out!
https://careerkarma.com/blog/JUMP_LINK__&&__python__&&__JUMP_LINK-average/
Hope it helps!
0
What kind of average? Mean, median, mode, weighted mean, ... ?