我在panda / python中创建了一个表来创建一个以月为列的表,月/年将显示在该列中。我一直试图让它一个月一个月地显示,所以让我们说jan然后feb。但我面临的问题是它在整个专栏中保持显示相同的月份和年份,因为您可以看到整个专栏中出现了月份游行。
这是我使用的for循环
month_count = 0
for row_num in range (4,20):
# TABLE 1
vsr_tracker.write_formula(
'B' + str(row_num),
'=DATE(2016,2+{0},1)'.format(month_count))
row_num + 1))
as you can see on the screenshot that it the month march has been printed throughout the column
答案 0 :(得分:0)
您的程序不会将月份增加+1,您必须将其添加到循环中的日期。 如果你想将天数增加1,你也必须增加天数。