반응형
if len(trashed_files) == 0 :
print "No files trashed from current dir ('%s')" % os.path.realpath(os.curdir)
else :
index=raw_input("What file to restore [0..%d]: " % (len(trashed_files)-1))
if index == "*" :
for tfile in trashed_files :
try:
tfile.restore()
except IOError, e:
import sys
print >> sys.stderr, str(e)
sys.exit(1)
elif index == "" :
print "Exiting"
else :
index = int(index)
try:
trashed_files[index].restore()
except IOError, e:
import sys
print >> sys.stderr, str(e)
sys.exit(1)
나는 얻고있다:
elif index == "" :
^
IndentationError: expected an indented block
해결 방법
오류 메시지에서 알 수 있듯이 들여 쓰기 오류가 있습니다. 탭과 공백이 혼합되어 발생했을 수 있습니다.
참조 페이지 https://stackoverflow.com/questions/4446366
반응형
'파이썬' 카테고리의 다른 글
파이썬 바이트 문자열을 정수로 변환하는 방법은 무엇입니까? (0) | 2020.10.19 |
---|---|
파이썬 Python 3으로지도 객체를 인쇄하는 방법은 무엇입니까? (0) | 2020.10.19 |
파이썬 Python : 값에 대해 목록의 발생 확인 (0) | 2020.10.18 |
파이썬 Keras-categorical_accuracy와 sparse_categorical_accuracy의 차이점 (0) | 2020.10.18 |
파이썬에서 데이터를 쉽게 저장 /로드 (0) | 2020.10.18 |
댓글