我收到错误
TypeError: 'filter' object is not subscriptable
尝试运行以下代码块时
bonds_unique = {}
for bond in bonds_new:
if bond[0] < 0:
ghost_atom = -(bond[0]) - 1
bond_index = 0
elif bond[1] < 0:
ghost_atom = -(bond[1]) - 1
bond_index = 1
else:
bonds_unique[repr(bond)] = bond
continue
if sheet[ghost_atom][1] > r_length or sheet[ghost_atom][1] < 0:
ghost_x = sheet[ghost_atom][0]
ghost_y = sheet[ghost_atom][1] % r_length
image = filter(lambda i: abs(i[0] - ghost_x) < 1e-2 and
abs(i[1] - ghost_y) < 1e-2, sheet)
bond[bond_index] = old_to_new[sheet.index(image[0]) + 1 ]
bond.sort()
#print >> stderr, ghost_atom +1, bond[bond_index], image
bonds_unique[repr(bond)] = bond
# Removing duplicate bonds
bonds_unique = sorted(bonds_unique.values())
和
sheet_new = []
bonds_new = []
old_to_new = {}
sheet=[]
bonds=[]
错误发生在该行
bond[bond_index] = old_to_new[sheet.index(image[0]) + 1 ]
很抱歉,此类问题已多次发布,但我对 Python 还很陌生,并不完全理解字典。我是在尝试以不应该使用的方式使用字典,还是应该在不使用字典的地方使用字典?我知道修复可能非常简单(尽管对我来说不是),如果有人能指出我正确的方向,我将不胜感激。
再次,如果这个问题已经得到回答,我深表歉意
谢谢,
克里斯。
我在 Windows 7 64 位上使用 Python IDLE 3.3.1。