0

我正在尝试在使用正则表达式和 dict() 的地方运行此代码。我需要将匹配的元素放入正确的列表中,但出现错误。TypeError: 'list' object is not callable。谁能告诉我我在这里做错了什么。

dir='newDSSP'
for tname in os.listdir(dir):
    file=dir+os.sep+tname
    ndfile=open(file)
    tname=dict()
    tname.setdefault('A',[[],[]])
    tname.setdefault('B',[[],[]])
    tname.setdefault('C',[[],[]])
    tname.setdefault('D',[[],[]])
    for ndline in ndfile:
        t=re.match(r'(\s+|\S+)+\t\w+\t(\w)\t(\w)\t(\w|\s)', ndline)
        k=t.group(2)
        if k =='A':

            tname['A'](0).append(t.group(3))<--- **#Error here**
            tname['A'](1).append(t.group(4))
        elif k =='B':

            tname['B'](0).append(t.group(3))
            tname['B'](1).append(t.group(4))
        elif k =='C':

            tname['C'](0).append(t.group(3))
            tname['C'](1).append(t.group(4))
        elif k =='D':

            tname['D'](0).append(t.group(3))
            tname['D'](1).append(t.group(4))
    ndfile.close()
4

2 回答 2

8

你有

tname['A'](0).append(t.group(3))

但不是tname['A']一个包含两个列表的列表吗?在这种情况下,你想要

tname['A'][0].append(t.group(3))
于 2012-04-27T03:49:23.907 回答
1

x()始终是一个函数调用,所以像tname['C'](0)试图tname['C']作为一个带有参数的函数调用0。也许您打算将方括号用于列表索引?

于 2012-04-27T03:49:49.843 回答