728x90
반응형
Type Error: list indices must be integers or slices, not tuple 오류가 나타났다...
나타난 문장은 바로 Type Error: list indices must be integers or slices, not tuple
if data[nx,ny]==0 and check[nx,ny] == 0:
이것..
받아올때는
data = [list(map(int, input().split()) for _ in range(n))]
가독성을 위해 한 줄로 된 이 코드를 사용했다.
난 튜플 사용안했는데 왜... 라고 생각했으나 if data[nx,ny]접근이 아니라 data[nx][ny]였다....킥....해결완료..
728x90
반응형
'오류를 고쳐라!' 카테고리의 다른 글
TypeError: 'list' object cannot be interpreted as an integer 해결 (0) | 2023.06.14 |
---|---|
TypeError: 'str' object does not support item assignment (0) | 2023.06.13 |
ZeroDivisionError: integer division or modulo by zero 해결 (0) | 2023.06.13 |
TypeError: can only concatenate str (not "int") to str 해결 (0) | 2023.04.12 |