摘要: Series数据操作: 1 res = pd.Series([111,222,333,444]) 2 # 增 3 res['a'] = 123 4 # 查 5 res.loc[1] 6 # 改 7 res[0] = 1 8 # 删 9 del res[0] 算术运算符: 1 """ 2 add 加( 阅读全文