This Loop Should Delete Three Items. It Deletes Two.

scores = [45, 30, 88, 92, 15, 67]

for score in scores:

if score < 50:

scores.remove(score)