如果我将一个新列初始化为零:
df['key'] = 0
然后:
df.loc[0]['key']
Out[538]: 0
但是当我将其设置为新值时:
df.loc[0]['key'] = 1
调用该条目仍然返回零...
到底是怎么回事?
茅侃侃
相关分类