목차
dictionary .get() 예제 - key 존재 O 경우
dictionary .get() 정의
dictionary .get() 구문
dictionary .get() 예제 - key 존재 X 경우
dictionary .get() 예제 - key 존재 O 경우
hz = {
"site": "홈짱닷컴",
"host": "Homzzang.com",
"open": 2012
}
x = hz.get('host')
print(x)
결과값: Homzzang.com
dictionary .get() 정의
Dictionary에서 지정 key의 값 반환.
dictionary .get() 구문
dictionary .get(keyname, value )
[매개변수]
keyname
필수. 값을 가져올 아이템의 key 이름.
value
선택. key가 존재 않는 경우 반환 값. (기본값: None)
dictionary .get() 예제 - key 존재 X 경우
[반환값 지정된 경우]
hz = {
"site": "홈짱닷컴",
"host": "Homzzang.com",
"open": 2012
}
x = hz.get("intro", "코딩 강의")
print(x)
결과값: 코딩 강의
[반환값 지정 안 된 경우]
hz = {
"site": "홈짱닷컴",
"host": "Homzzang.com",
"open": 2012
}
x = hz.get("intro")
print(x)
결과값: None
주소 복사
랜덤 이동
최신댓글