pandas dataframe根据筛选结果修改值

例:
这个是根据 列1 == '旧值'这个条件,将列2指定为新的值

df.loc[df[(df.1 == '旧值')].index.tolist(),'列2'] = '新的值'

你可能感兴趣的:(数据处理,pandas)