F(name), annotate(), TruncMonth() , Counter().most_common(), isinstance(objects, class)
Language/Python

F(name), annotate(), TruncMonth() , Counter().most_common(), isinstance(objects, class)

뉴비뉴 2020. 2. 10.

F(name)

 

annotate()

임시 확인 용 컬럼 생성 용도로 사용할 수도 있고, Group By로 사용할 수도 있다.

 

TruncMonth() 

월 까지만 가져온다.

그 아래의 값은 기본 값으로 1일이 들어간다.

datetime.date(2019.12.1)

datetime.date(2020.02.1)

 

그 외에 Day . . .등등많은 조건이 존재

 

 

Counter().most_common()

Counter 클래스의 most_common() 메쏘드는 등장한 횟수를 내림차순으로 정리하여 다음과 같이 보여준다. 
출처: https://codepractice.tistory.com/71 [코딩 연습]

 

 

isinstance(objects, class)

첫 번째 인수로 인스턴스, 두 번째 인수로 클래스 이름을 받는다.

입력으로 받은 인스턴스가 그 클래스의 인스턴스인지를 판단하여 참이면 True,

거짓이면 False를 돌려준다.

 

class Person: pass

a = Person()
isinstance(a, Person)
True

 

https://wikidocs.net/32#isinstance

 

'Language > Python' 카테고리의 다른 글

swagger @method_decorator, @swagger_auto_schema  (0) 2020.02.25
Python - unittest Mock  (0) 2020.02.20
쿠키 / 세션이란  (0) 2020.01.31
Python - Dict student['Key'] vs student.get('Key')  (0) 2020.01.11
Github .gitignore 언어별 기본 값  (0) 2019.12.31

댓글

💲 추천 글