일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- kaggle
- 315. Count of Smaller Numbers After Self
- iterator
- 컴퓨터의 구조
- t1
- shiba
- 109. Convert Sorted List to Binary Search Tree
- DWG
- 30. Substring with Concatenation of All Words
- Substring with Concatenation of All Words
- concurrency
- 밴픽
- 43. Multiply Strings
- 운영체제
- Decorator
- LeetCode
- Python Code
- 파이썬
- Regular Expression
- Python Implementation
- 시바견
- data science
- Class
- 715. Range Module
- Convert Sorted List to Binary Search Tree
- attribute
- Python
- Generator
- 프로그래머스
- Protocol
- Today
- Total
목록iterator (2)
Scribbling
Sequence Protocol To make a custom data type have Sequence Protocol, you need to implement "__iter__" method. Even though "__getitem__" method is enough for now, you should implement "__iter__" method as well for later compatibility. A classic iterator Below is a classic implementation - not a rolemodel - of an iterator. import re import reprlib class Sentence: def __init__(self, text): self.tex..
1. Iterator __iter__, __next__를 가진 객체를 iterator protocol을 지원한다고 일컫는다. class Counter: def __init__(self, limit): self.num = 0 self.limit = limit def __iter__(self): return self def __next__(self): if self.num < self.limit: ret = self.num self.num += 1 return ret else: raise StopIteration for i in Counter(10): print(i, end=' ') 클래스에서 __getitem__ 메서드만 구현해도 이터레이터가 된다. class Counter: def __init__(sel..