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