python&pandas | 把大于或者小于100的值替换为0和1

df["price"][df.price<100]=0
df["price"][df.price>100]=1

你可能感兴趣的:(python,pandas,numpy,数据挖掘,机器学习)