전체 글 (33) 썸네일형 리스트형 [command] find filename/directoryname 파일명 찾기 find . -name "filename" 디렉토리 찾기 find . -name "dirname" -type d [kudu] create table CREATE TABLE my_first_table ( id BIGINT, name STRING, PRIMARY KEY(id) ) PARTITION BY HASH PARTITIONS 6 STORED AS KUDU TBLPROPERTIES ('kudu.master_addresses' = 'host_name') [반복문] skip 시 pass/continue pass : 실행할 코드가 없는 경우 continue : 다음 순번 loop 로 넘어감 for i in list: if "data" in i: pass print(i) -> i에 "data"가 포함되어도 print(i) 출력됨 for i in list: if "data" in i: continue print(i) -> 에 "data"가 포함되면 다음 loop가 돌게됨 이전 1 ··· 7 8 9 10 11 다음