Recent Posts

Spring Boot vs. Spring MVC vs. Spring 비교

3 minute read

- learn what problems they solve, and where they’re best applied. - The most important thing that you will learn is that Spring, Spring MVC, and Spring Boot...

set들끼리의 집합

less than 1 minute read

교집합 a = set() b = set() 1) set.intersection(a, b) 2) a.intersection(b)

requests 모듈 사용법

less than 1 minute read

get 요청일 때(params 사용) payload = {'key1': 'value1', 'key2': 'value2'} response = requests.get('http://httpbin.org/get', params=payload) => http://httpbin.or...

Python에서의 상속

less than 1 minute read

클래스를 상속했을 때 메서드 실행 방식 인스턴스의 메서드를 실행한다고 가정할 때 __getattribute__()로 bound 된 method 를 가져온 후 메서드를 실행한다. 메서드를 가져오는 순서는 __mro__에 따르는데 MRO(method resolution order)는 ...