답변:
dict
매개 변수없이 호출
new_dict = dict()
또는 간단히 쓰십시오
new_dict = {}
{}
이상 dict()
5 회 []
이상 list()
.
사전 설정 사전을 작성하는 방법을 아는 것도 유용합니다.
cmap = {'US':'USA','GB':'Great Britain'}
# Explicitly:
# -----------
def cxlate(country):
try:
ret = cmap[country]
except KeyError:
ret = '?'
return ret
present = 'US' # this one is in the dict
missing = 'RU' # this one is not
print cxlate(present) # == USA
print cxlate(missing) # == ?
# or, much more simply as suggested below:
print cmap.get(present,'?') # == USA
print cmap.get(missing,'?') # == ?
# with country codes, you might prefer to return the original on failure:
print cmap.get(present,present) # == USA
print cmap.get(missing,missing) # == RU
cxlate
의 대답으로 대답이 너무 복잡해 보인다고 생각합니다 . 초기화 부분 만 유지하겠습니다. ( cxlate
자체는 너무 복잡하다. 당신은 그냥 할 수있다 return cmap.get(country, '?')
.)
KeyError
를 제외하고 대신 베어의을 (같은 물건을 잡을 것이다 KeyboardInterrupt
및 SystemExit
).
d = dict()
또는
d = {}
또는
import types
d = types.DictType.__new__(types.DictType, (), {})
dict를 만드는 두 가지 방법이 있습니다.
my_dict = dict()
my_dict = {}
그러나이 두 가지 옵션 중 읽기 가능 옵션 {}
보다 효율적 dict()
입니다.
여기를 확인하십시오
>>> dict.fromkeys(['a','b','c'],[1,2,3])
{'a': [1, 2, 3], 'b': [1, 2, 3], 'c': [1, 2, 3]}