[2팀 / 김은수] 10차시 파이썬 과제 - 예외처리
1번 sentence = list("Hello Friend") while (len(sentence)+1): try: print(sentence.pop(0)) except Exception as e: print(e) break H e l l o F r i e n d pop from empty list 2번 try: for i in range(1, 7): result = 7 // i print(result) except ZeroDivisionError: print("Not divided by 0") finally: print("종료되었습니다.") 7 3 2 1 1 1 종료되었습니다. 3번 days = ['Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday'] for..