일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 운영체제
- 30. Substring with Concatenation of All Words
- 밴픽
- Protocol
- 315. Count of Smaller Numbers After Self
- shiba
- data science
- DWG
- 43. Multiply Strings
- Python Code
- Decorator
- Substring with Concatenation of All Words
- Python
- 프로그래머스
- 109. Convert Sorted List to Binary Search Tree
- kaggle
- concurrency
- 컴퓨터의 구조
- LeetCode
- 파이썬
- Generator
- Convert Sorted List to Binary Search Tree
- iterator
- Class
- Python Implementation
- 715. Range Module
- attribute
- t1
- Regular Expression
- 시바견
Archives
- Today
- Total
목록Closure (1)
Scribbling
Python: Decorator & Closure
Decorator is a callable that takes another function as its parameter. Decorator is executed during 'import time'. The key idea about closure you must understand is that it can access to 'nonlocal' variables outside the function. Take a look at the below exmaple. def make_averager(): series = [] def averager(new_val): series.append(new_val) return sum(series) / len(series) return averager avg = m..
Computer Science/Python
2022. 3. 29. 11:49