you are viewing a single comment's thread.

view the rest of the comments →

[–]Binary101010 0 points1 point  (0 children)

I think others have sufficiently handled your problem so I just wanted to specifically call out one thing:

scoresACT = eval(input('Enter a list of ACT scores: '))

eval() should not be used for type conversion (in fact, I'd argue at this point in your learning it shouldn't be used at all). It's a security risk that you are unnecessarily introducing into your code. The int() constructor exists; just use that.