두 개의 python 키워드 continue와 pass예제에서 와 같은 중요한 차이점이 있습니까? for element in some_list: if not element: pass 과 for element in some_list: if not element: continue 알고 있어야합니까?
switch문 중간 에서 다음 코드의 루프 문 으로 건너 뛰고 싶습니다 . while (something = get_something()) { switch (something) { case A: case B: break; default: // get another something and try again continue; } // do something for a handled something do_something(); } 이것이 유효한 사용 방법 continue입니까? continue명령문 …