[ 작업 환경 ]
Python3
[ 문제 상황 ]
TypeError: tuple indices must be integers, not str
[ 문제 원인 및 해결 방법 ]
튜플 index에 int가 아니라 문자를 넣어 발생하는 오류입니다.
tuple[0] 이면 첫번째 항목이 return되듯이, 숫자로 index를 찾기 때문에 숫자로 써주어야합니다.
[ 작업 환경 ]
Python3
[ 문제 상황 ]
TypeError: tuple indices must be integers, not str
[ 문제 원인 및 해결 방법 ]
튜플 index에 int가 아니라 문자를 넣어 발생하는 오류입니다.
tuple[0] 이면 첫번째 항목이 return되듯이, 숫자로 index를 찾기 때문에 숫자로 써주어야합니다.