Python throws error, ‘method’ object is not subscriptable, when a class method is indexed or subscripted using square brackets [] like if its a list or tuple or array.
Consider this example –

class SuperHeroList:
    def __init__(self):
        self.theSuperHeroList = list()
    def __getitem__(self, i):
       print(self.theSuperHeroList[i])
    def insert(self, lst):
        for x in lst:
            try:
                self.theSuperHeroList.append(str(x))
            except:
                print("oops")

myList = SuperHeroList()
myList.insert["Captain America", "Hulk", "Thor"]

PythonCopy

This code will throw the error that method is not subscriptable. In our SuperHeroList class we have defined a method insert(), which is accepting a list as argument and appending it with internal list, theSuperHeroList.

#python #error #python error #python-short

'method' Object Is Not Subscriptable - Python Error
3.30 GEEK