标签: python pandas
我在数据框上设置了多索引
df.set_index(['A', 'B', 'C'])
然后我想为所有行设置一些值,其中索引'A'等于'foo'
df.loc[df['A'] == 'foo'] = 5
它引发以下错误:
KeyError: 'A'