I have stored highscores in a ListProperty() and I'm trying to fetch an item from that list by index inside kv file (code below). It keeps saying "list index out of range".
.py file:
scores = ListProperty()
.kv file:
Label:
text: str(root.scores[1])
If I remove the [1] index part and just have str(root.scores) it perfectly shows the entire list.