| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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
- 밴픽
- Class
- Python
- iterator
- concurrency
- Python Code
- t1
- 30. Substring with Concatenation of All Words
- Regular Expression
- data science
- 컴퓨터의 구조
- 프로그래머스
- Convert Sorted List to Binary Search Tree
- Generator
- 파이썬
- Substring with Concatenation of All Words
- 시바견
- Protocol
- Decorator
- attribute
- 109. Convert Sorted List to Binary Search Tree
- Python Implementation
- 43. Multiply Strings
- LeetCode
- 315. Count of Smaller Numbers After Self
- DWG
- 운영체제
- shiba
- kaggle
- 715. Range Module
Archives
- Today
- Total
Scribbling
Python Immutable Dictionary, Set 본문
Immutable dictionary: MappingProxyType
Immutable Set: Frozenset
from types import MappingProxyType
d = {'a': 'apple', 'b': 'banana', 'c': 'carrot'}
d_fixed = MappingProxyType(d)
print(d_fixed['a'])
s = frozenset([1, 2, 3])
print(s)
'Computer Science > Python' 카테고리의 다른 글
| Python: Design Patterns (0) | 2022.03.25 |
|---|---|
| Python: Memoryview function (0) | 2022.03.23 |
| Python Data Structures: Sequences (0) | 2022.03.21 |
| Python Magic Methods: Pythonic Data Model (0) | 2022.03.16 |
| Python Grammar: Things that I forget often (0) | 2022.03.14 |