일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Python
- DWG
- Protocol
- Convert Sorted List to Binary Search Tree
- 프로그래머스
- Substring with Concatenation of All Words
- 30. Substring with Concatenation of All Words
- kaggle
- Python Code
- 운영체제
- Regular Expression
- Decorator
- Generator
- data science
- LeetCode
- 109. Convert Sorted List to Binary Search Tree
- attribute
- 컴퓨터의 구조
- iterator
- 파이썬
- 밴픽
- shiba
- 시바견
- Python Implementation
- t1
- 43. Multiply Strings
- 315. Count of Smaller Numbers After Self
- Class
- concurrency
- 715. Range Module
- 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..