728x90
반응형
문자열데이터를 정수형처럼 사용했을때 나는 오류이다.
나는 아래의 코드에서 오류가 났다.
def solution(arr1, arr2):
answer = [[]*len(arr1)]*len(arr1[0])
for i in range(arr1):
for j in range(arr1[0]):
answer[i][j] = arr1[i][j] + arr2[i][j]
return answer
다시보니 len()붙여주는 걸 깜박하고 그대로 써버려서 수정해줬다.
728x90
반응형
'오류를 고쳐라!' 카테고리의 다른 글
TypeError: 'str' object does not support item assignment (0) | 2023.06.13 |
---|---|
ZeroDivisionError: integer division or modulo by zero 해결 (0) | 2023.06.13 |
Type Error: list indices must be integers or slices, not tuple (0) | 2023.06.06 |
TypeError: can only concatenate str (not "int") to str 해결 (0) | 2023.04.12 |