Python

파이썬 with as 구문

alba 2022. 1. 14. 18:42

 

파이썬에 자주 사용되는 with A as B 구문은

B = A 와 같은 의미로 생각하면 이해하기 편하다.

 

ex)

with urlopen('https://....') as response

-> 

response = urlopen('https://....')