0

This code is giving error help to fix it

https://code.sololearn.com/cbhzepK0Ypj6/?ref=app

26th Jul 2017, 4:06 PM
Shikha Gupta
Shikha Gupta - avatar
3 odpowiedzi
+ 10
""" Python deals a lot with indentation, better use it in your code, otherwise it would always give an error """ def sum_of_middle_three(score1,score2,score3,score4,score5): max_no = max(score1,score2,score3,score4,score5) min_no = min(score1,score2,score3,score4,score5) average=(score1+score2+score3+score4+score5)-max_no-min_no/3 return average print(sum_of_middle_three (34,35,65,56,87))
26th Jul 2017, 4:11 PM
Dev
Dev - avatar
26th Jul 2017, 4:23 PM
Мг. Кнап🌠
Мг. Кнап🌠 - avatar
0
can you please correct it in code
26th Jul 2017, 4:18 PM
Shikha Gupta
Shikha Gupta - avatar