best_record = 55.5
records = [54.2, 56.1, 55.0, 58.3]
count = 0

for i in range(len(records)):
    if best_record < records[i]:
        count += 1

print(count)
        
    

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: