Nov-17-2019, 08:37 AM
you can use list comprehension
scores = [int(score) for score in data[1:]]or
map
scores = map(int, data[1:5])then
grade = sum(scores)
If you can't explain it to a six year old, you don't understand it yourself, Albert Einstein
How to Ask Questions The Smart Way: link and another link
Create MCV example
Debug small programs
How to Ask Questions The Smart Way: link and another link
Create MCV example
Debug small programs