I am coding in Pygame Zero. I wanted to get one of the string index of
player.collidelist
I have tried using
actoer= player.collidelist[57]+player.collidelist[58]+player.collidelist[59]
print(actoer)
But an error tells me that method object is not iterable
I have tried doing the string indexing after doing
actoer= player.collidelist
but it still didn't work.