Language/Python (2) 썸네일형 리스트형 [Python] __mising__ method (default value) dict 사용시, default value 설정하는 방법은 2개가 있다. 1. dict의 setdefault 사용 2. collections의 defaultdict 사용 파일을 열고 열린 파일 handle을 연결시키는 dict를 사용한다고 할 때, case 1) dict의 setdefault 사용 try: handle = pictures.setdefault(path, open(path, 'a+b')) except OSError: print(f"cannot open path: {path}") raise else: handle.seek(0) image_data = handle.read() 1. open 함수가 항상 호출됨 --> open 함수의 error 처리 해줘야 함 2. setdefault의 예외 처리.. [Python] assignment expression(walrus operator) python 3.8 PEP572 내용. NAME = expr --> (NAME euqal expr) NAME := expr --> (NAME walrus expr) 저렇게 표현하고 읽는다고 합니다. case1) repeated a subexpression Case in point: Guido found several examples where a programmer repeated a subexpression, slowing down the program, in order to save one line of code, e.g. instead of writing: bottles = [] fresh_fruit = pick_fruit() while fresh_fruit: for fruit, count in f.. 이전 1 다음