我正在尝试更改系列的索引。指数为Date
s。 cashflow_series
是系列,我只是尝试在索引上使用replace(month = cashflow_series.index[k].month + dict_no_months_between_payments[count])
添加一定数量的月份,并使用它来替换以前的索引日期。但是,我收到错误SyntaxError: Invalid Syntax
。
index_here = cashflow_series.index[k]
cashflow_series.index[k] = cashflow_series.index[k].reindex(index=index_here.(replace(month = cashflow_series.index[k].month + dict_no_months_between_payments[count])))
答案 0 :(得分:1)
你有一组括号太多:
index_here.(replace
^
删除那个及其结束匹配。