Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 판다스
- Deep Learning
- Series
- paper
- machine learning
- David Silver
- Jacobian Matrix
- reinforcement learning
- pandas
- Laplacian
- neural network
- 데이터 분석
- optimization
- 딥러닝
- Hessian Matrix
- 리스트
- unity
- ML-Agent
- list
- rl
- 강화학습
- 사이킷런
- 유니티
- statistics
- Python Programming
- 김성훈 교수님
- Linear algebra
- 논문
- 모두를 위한 RL
- convex optimization
Archives
목록딕셔너리 (1)
RL Researcher
13. Dictionary(딕셔너리)
1. Dictionary(딕셔너리) 딕셔너리 타입은 immutable한 키(key)와 mutable한 값(value)으로 맵핑되어 있는 순서가 없는 집합입니다. 중괄호로 되어 있고 키와 값이 있습니다. print({"a" : 1, "b":2}) ======================================================================== {'a': 1, 'b': 2} 키로는 immutable한 값은 사용할 수 있지만, mutable한 객체는 사용할 수 없습니다. # immutable 예 a = {1: 5, 2: 3} # int 사용 print(a) a = {(1,5): 5, (3,3): 3} # tuple사용 print(a) a = { 3.6: 5, "abc": 3} ..
AI Basic/Python Programming
2021. 1. 3. 18:29