[Python] Dictionary Key Error
331 단어 dictionarypythondictionary
dictionary로 코딩을 하던 중 생긴 에러.
없는 키로 접근을 하였기 때문에 생겼다.
key가 존재하는 지 없는 지 체크하는 조건문만 넣어주면 된다.
아래는 실제 코드는 아니고, 예제 코드를 첨부한다.
data = {}
key = 1
if key in data :
print(data[key], '의 value가 존재합니다.')
else :
data[key]='hello'
print(data[key], '의 value를 넣었습니다.')
Author And Source
이 문제에 관하여([Python] Dictionary Key Error), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@kkaemi/Python-Dictionary-Key-Error저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)