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
- Container
- clone
- 앱테크
- 리워드앱
- 하나머니
- 포인트앱
- 후기
- VPC
- 커피머니불리기
- 토스카드
- MongoDB
- 도커
- codecommit
- MongoEngine
- docker network
- aws codecommit
- 재테크
- DocumentDB
- 실사용
- network
- 리뷰
- AWS
- mininet
- namespace
- python3
- docker
- built-in
- Linux
- Python
- S3
Archives
- Today
- Total
목록mutable (1)
ㅍㅍㅋㄷ
python 3와 python 2의 dictionary 차이 - view object
python 3와 python 2의 dictionary 차이 - view object python 3로 가면서 python 2에 비해 여러가지가 변경되었다. 그 중에 python 3에서 새롭게 생긴 dictionary의 view object 에 대해서 알아 보려 한다. Dictionary 메서드 - items() / keys() / values() python에서 dictionary 를 탐색할때 가장 많이 하는 행위 중 하나가 바로 for문을 통해 key와 value 값을 가져오는 것일 것이다. dic = {'a': 100, 'b': 50, 'c': 10, 'd': 500} for k,v in dic.items(): print("key=%s, value=%s" %(k,v)) >>> key=a, value..
Programming/Python
2019. 2. 19. 17:17