Basketball player challenge of python data science .I wrote following code but it doesn't work . what's wrong? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Basketball player challenge of python data science .I wrote following code but it doesn't work . what's wrong?

players = [180, 172, 178, 185, 190, 195, 192, 200, 210, 190] mean = sum (players)/len(players) list1 =[] for i in players : data = (i - mean )**2 list1.append (data) sum =0 for i in list1 : sum += i sum =(sum**(1/2)) list2=[] for i in players : if (mean-sum)<= i <= (mean+sum): list2.append (i) print (len(list2))

30th May 2021, 3:38 PM
Yash Wable 🇮🇳
Yash Wable 🇮🇳 - avatar
2 Answers
+ 1
#Try_this_hope_this_will_help_you import math players = [180, 172, 178, 185, 190, 195, 192, 200, 210, 190] b=sum(players) c=b/len(players) d=[] for i in range(len(players)): e=int(c)-players[i] d.append(e**2) f=sum(d) g=f/len(d) h=(math.sqrt(g)) i=c-h j=c+h k=[] for l in players: if (l>i) and (l<j): k.append(l) print(len(k))
30th May 2021, 5:09 PM
Salman Khan
0
What is the question?
30th May 2021, 4:23 PM
Eashan Morajkar
Eashan Morajkar - avatar