我收到一条错误消息“TypeError: 'str' object is not callable”;这是我的代码:
m=input()
while(m!='0'):
c=0
for letter in range(len(m)):
if(m(letter) == '1'or '2'):
c++
if((m(letter) == '7'or'8'or'9') and (m(letter -1)=='2')):
c--
if(m(letter)=='0'):
c--
print(c)
m=input()
这个错误是什么意思?