TypeError:'method' object is not subscriptable

遭遇问题TypeError: ‘method’ object is not subscriptable

是因为我本来写了一个class的method

1
2
3
def get_page(self, num):
num = int(num)
return self.pages[num]

但是在调用的时候我用了

1
2
get_page[i]
get_page(i) #这样才是正确的

找到报错改括号就行了!