我有两个日期:
a = (pd.to_datetime(20191231, format='%Y%m%d') + pd.offsets.MonthEnd(n=0)).to_period('Q')
b = (pd.Timestamp(str(2020) + '-' + str(4 * 3)) + pd.offsets.MonthEnd(n=0)).to_period('Q')
我计算了它们的差异:
c = a - b
的类型c
仍然是pandas._libs.tslibs.offsets.QuarterEnd
. 有没有办法可以转换c
为整数(四分之一的差异)?