본문 바로가기
파이썬

파이썬에서 IOError 잡기

by º기록 2020. 10. 13.
반응형

일부 작업을 수행하고 잘못된 파일 이름을 포착하는 메서드를 작성했습니다. 경로가 존재하지 않으면 IOError가 발생합니다. 그러나 내 예외 처리가 잘못된 구문이라고 생각합니다. 왜 ??

그러나 whatever () 를 호출하기 전에 다음을 인쇄합니다.

가져올 때 ... 도움?!

 

해결 방법

 


삭제 된 질문에서 :

I'd expect this to be a duplicate, but I couldn't find it.

Here's Python code, expected outcome of which should be obvious:

x = {1: False, 2: True} # no 3

for v in [1,2,3]:
  try:
      print x[v]
  except Exception, e:
      print e
      continue
I get the following exception: SyntaxError: 'continue' not properly in loop.

I'd like to know how to avoid this error, which doesn't seem to be 
explained by the continue documentation.

I'm using Python 2.5.4 and 2.6.1 on Mac OS X, in Django.

Thank you for reading

 

참조 페이지 https://stackoverflow.com/questions/4869476

 

 

반응형

댓글