當我編譯下面的Python代碼,我得到IndentationError:當實際壓痕不取消縮進不匹配任何外部縮進級別縮進錯誤:取消縮進不匹配任何外部縮進級別
Files = os.listdir(".")
monthNum = 1
totMonths = 0
for year in range(2003, 2016):
os.chdir('./'+str(year))
for month in range(1, 13):
totMonths = totMonths +1
if (month < 10):
monthStr = str(year)+"0"+str(month)
else:
monthStr = str(year)+str(month)
你可以發佈完整的追溯? –
您的代碼在[tag:python-2.x]和[tag:python-3.x] –
上運行得很好'在範圍內的月份有一個選項卡...只需使用四個空格 –