다음과 같이 다시 작성하여 코드에서 예외를 처리할 수 있습니다.
a=[] foo = 'redbullz' try: for i in foo: a.append(i) print a[8] except Exception as e: print e
다음 출력을 얻습니다.
list index out of range Process finished with exit code 0
다음과 같이 다시 작성하여 코드에서 예외를 처리할 수 있습니다.
a=[] foo = 'redbullz' try: for i in foo: a.append(i) print a[8] except Exception as e: print e
다음 출력을 얻습니다.
list index out of range Process finished with exit code 0