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