Series和Series之间的操作s1 + s2 会自动索引对齐报NAN
使用方法(s1.add(s2,fill_value=0))
示例
import pandas as pd
s1 = pd.Series([1,4,2,3,5])
2025-05-27