-2
我一直在創造一個程序,排序文件,我需要一個試圖抓住一個錯誤嘗試/除壓痕錯誤
這裏是代碼:
try:
shutil.move(path, directory)
except OSError:
print 'ERROR: File name already in use'
quit()
但是當我嘗試這樣的錯誤:
except OSError:
^
IndentationError: unexpected unindent
任何建議,將不勝感激
我有一個建議,縮進你的代碼! – Maroun
'try'和'except'必須處於相同的縮進級別。 – fredtantini
如果您的嘗試和除了縮進級別相同,則需要發佈代碼的上下文。 –