2016년 3월 24일 목요일
파이썬 기본함수 딕셔너리 get 함수
Description
The method get() returns a value for the given key. If key is not available then returns default value None.
Following is the syntax for get() method −
dict.get(key, default=None)
-Parameters-
key -- This is the Key to be searched in the dictionary.
default -- This is the Value to be returned in case key does not exist.
-Return Value-
This method return a value for the given key. If key is not available, then returns default value None.
-Example-
The following example shows the usage of get() method.
intput //
dict = {'Name': 'Zara', 'Age': 27}
print "Value : %s" % dict.get('Age')
print "Value : %s" % dict.get('Sex', "Never")
output //
Value : 27
Value : Never
피드 구독하기:
댓글 (Atom)
댓글 없음:
댓글 쓰기