Python (2) 썸네일형 리스트형 [파이썬] 파일 탐색기 만들기 검색 기능 : 시작 디렉토리, 파일 이름, 확장자, 최종 수정 일자 import os import datetime def search_files(directory, file_name=None, extension=None, modified_after=None): matches = [] for root, dirs, files in os.walk(directory): for file in files: if file_name and file_name not in file: continue if extension and not file.endswith(extension): continue full_path = os.path.join(root, file) if modified_after: last_modified_.. [python] 배열 선언 2중 for문 if / else 동시 사용해 한줄로 아무튼 한줄이다. 한참 봐야되는 끔찍한 코드다. 되나 안되나 그냥 한번 해보고 싶어서 해봤다. 되는거 같다. 다른 사람이 이 코드를 보면 화가 날것이다. 옛날에도 비슷한걸 했다. 되는지 않되는지 매번 햇갈리므로 저장해둔다. ‱‱‱‱ 참고로 위의 코드는 아래와 같다 ‱‱‱‱ for idx in rang(len(img_list)): for box_idx in range(len(img_list[idx]['box'])) if type(img_list[idx]['box']) == list: { ~~ dictionary ~~} else : { ~~ dictionary ~~} 이전 1 다음