def readscorefromcsv():
position = listusers.index(username)
print(position)
global pointposition
pointposition = listscore(int(position))
I keep getting the error TypeError: 'list' object is not callable
I am trying to find the value for a specific position in an array
listusersis an array of usernames,listscoreis the array of user scores.positionis the position of the username in the array.
listin Python.