pandas 实现对一行中的多个列运算 ,生成新的列的方法,
pd.head()
df.eval("""e = 气温 + 湿度f = 气温 - 湿度g = 气温 / 2.0""", inplace=True)
inplace参数: 是否在原数据上操作。
inplace=False 将会生成新的DataFrame