-
json parsing 오류카테고리 없음 2021. 4. 4. 01:06
www.a-ha.io/questions/4f55b969f928ab4eb112aa5aaee79547
print(data['item']['aucSeNm']) 검색했을 때 TypeError: list indices must be integers or slices, not str error 발생
->print(data['item'][0]['aucSeCode'])로 수정
인덱싱 에러가 배열관련이기 때문
반응형