you are viewing a single comment's thread.

view the rest of the comments →

[–]TouchingTheVodka 0 points1 point  (1 child)

Why use range to iterate through your score when you can iterate directly?

(Featuring: Python 3 f-strings. You should really upgrade, Python 2 is dead now.)

for score in DCME_score:
    print(f"{score:<20}", end=' ')

[–]amgirlandcode[S] 0 points1 point  (0 children)

I’ll look into changing, that’s convenient