내장함수 - dict

2015. 7. 20. 08:44IT관련

반응형

https://docs.python.org/2/library/functions.html#func-dict


class dict(**kwarg)

class dict(mapping, **kwarg)

class dict(iterable, **kwarg)


딕셔너리를 생성하여 리턴한다.

딕셔너리를 생성하는 방법은 여러가지가 있을 수 있다.


>>> a = dict(one=1, two=2, three=3)

>>> b = {'one': 1, 'two': 2, 'three': 3}

>>> c = dict(zip(['one', 'two', 'three'], [1, 2, 3]))

>>> d = dict([('two', 2), ('one', 1), ('three', 3)])

>>> e = dict({'three': 3, 'one': 1, 'two': 2})

>>> a == b == c == d == e

True


반응형