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
- 토스카드
- 재테크
- DocumentDB
- built-in
- Linux
- 포인트앱
- 하나머니
- MongoDB
- aws codecommit
- AWS
- codecommit
- 실사용
- MongoEngine
- mininet
- S3
- docker network
- 리워드앱
- docker
- Container
- 리뷰
- network
- 앱테크
- clone
- 커피머니불리기
- python3
- VPC
- Python
- 도커
- 후기
- namespace
Archives
- Today
- Total
목록iteritems (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