일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- Protocol
- 운영체제
- 315. Count of Smaller Numbers After Self
- Python Code
- Convert Sorted List to Binary Search Tree
- Decorator
- DWG
- Generator
- Python Implementation
- attribute
- t1
- data science
- shiba
- Python
- Regular Expression
- Substring with Concatenation of All Words
- 43. Multiply Strings
- kaggle
- concurrency
- 파이썬
- 컴퓨터의 구조
- 30. Substring with Concatenation of All Words
- 프로그래머스
- 시바견
- 715. Range Module
- Class
- LeetCode
- iterator
- 밴픽
- 109. Convert Sorted List to Binary Search Tree
Archives
- Today
- Total
목록디스크립터 (1)
Scribbling
Python: Attribute Descriptors (속성 디스크립터)
디스크립터를 이요하면 여러 속성에 대한 동일한 접근 논리를 재사용 가능하다. 디스크립터는 __get__(), __set__(), __delete__() 메서드로 구성된 프로토콜을 구현하는 클래스다. property 클래스는 디스크립터 프로토콜을 완벽히 구현한다. 아래 글에서 동적 속성을 구현함에 있어 프로퍼티 팩토리를 이용했었다. https://focalpoint.tistory.com/314 Python: Dynamic attributes and properties (동적 속성과 프로퍼티) 파이썬에서는 데이터 속성과 메서드를 통틀어 속성이라고 한다. 메서드는 단지 호출가능한 속성이다. 프로퍼티를 사용하면 클래스인터페이스를 변경하지 않고도 공개 데이터 속성을 접근자 메 focalpoint.tistory.c..
Computer Science/Python
2022. 6. 17. 16:07