scores = [80, 90, 70, 60]
total = 0
count = 0
for i in range(len(scores)):
total += scores[i]
total = total // len(scores)
for j in range(len(scores)):
if scores[j] > total:
count += 1
print(count)
To embed this project on your website, copy the following code and paste it into your website's HTML: