기계는 거짓말하지 않는다

Python Index Error 본문

Python

Python Index Error

KillinTime 2021. 8. 3. 10:11

TypeError: 'int' object is not subscriptable

인덱스로 지정할 수 없는 경우(단일 값)

# TypeError: 'int' object is not subscriptable
intValue = 10
print(intValue[3])

intArray = [1, 2, 3]
print(intArray[0][1])

 

TypeError: list indices must be integers or slices, not str

TypeError: string indices must be integers

숫자 형식 인덱스에 Key 형식으로 받은 경우

# TypeError: list indices must be integers or slices, not str
intArray = [1, 2, 3]
print(intArray["A"])

# TypeError: string indices must be integers
strValue = "AAAA"
print(strValue["A"])
Comments