Issue with my code i keep getting this error: RuntimeError. Irritants: (Select list item: Attempt to get item number 9 of a list of length 8: ["A", "A", "A", "A", "A", "A", "A", "A"] Select list item: List index too large) Note: You will not see another e

Here are my blocks

Here is the .AIA file:
CreateTaskGpaCalculator.aia (6.6 KB)

the error message have told you very clear:
you have a list with length=8, but you want to get item 9.

check in your code why your list length=8, and why you want to get item 9.

I keep trying to change i to a different index but it doesn't work

What is your aim? give in your words also say your logic

You used text length where you should have used Length of List block, which counts items.
lists_length

1 Like

Thank you so much! I didn't know there was a length of list block my bad. :sweat: