Dia Egg - Shugo Chara

오류를 고쳐라!

Type Error: list indices must be integers or slices, not tuple

별ㅇI 2023. 6. 6. 19:02
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
반응형