[Solved] How to fix “list assignment index out of range” python3
This code has multiple design issues but the immediate one seems to be how played squares are removed from the list hody: hody = [1, 2, 3, 4, 5, 6, 7, 8, 9] Squares are removed by index: elif (k == 5) and k in hody: # … del(hody[k – 1]) But once a square … Read more