일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- keras
- 이미지 생성
- word embedding
- #일상영어
- #English
- TensorFlow
- Convolution Neural Network
- python list
- text2img
- #영어 명언
- tokenizing
- python 알고리즘
- object detection
- #1일1영어
- convexhull
- 완전탐색
- #Android
- #실생활 영어
- 딥러닝
- #프로젝트
- opencv SURF
- findContours
- 영어
- tensorflow update
- c언어
- #opencv
- python __init__
- #실생활영어
- #영어
- 영어명언
Archives
- Today
- Total
목록'dict' object has no attribute 'iteritems' (1)
When will you grow up?
'dict' object has no attribute 'iteritems' 오류
python을 사용하다보면 items() 함수와 iteritems()라는 함수가 종종 사용되는것을 볼 수 있는데, 파이썬 버전에 따라 다른 결과를 나타낸다 원래 python item()는 tuple을 원소로 가지는 list를 return했다.ex) tuple은 리스트와 비슷한 자료형이며, tu = ('abc',1,3,'tuple') / answer = {"a": (3**2), "b": (3**4-2)} 이러한 값들을 리턴받을 수 있으며 보통 for문을 이용하여 리턴받는다. 그런데 이러한 방법은 메모리를 많이 잡아먹기 때문에, generator가 도입된 후 메모리를 효율성을 위하여 items() 대신 iteritems()를 사용.python 2.x버전에서는 구버전과 호환성을 위해 items() , iter..
02. Study/Python
2017. 5. 15. 17:11