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