Python: create dictionary using dict() with integer keys?

后端 未结 3 2002
深忆病人
深忆病人 2021-02-03 18:11

In Python, I see people creating dictionaries like this:

d = dict( one = 1, two = 2, three = 3 )

What if my keys are integers? When I try this:

3条回答
  •  难免孤独
    2021-02-03 18:41

    There are also these 'ways':

    >>> dict.fromkeys(range(1, 4))
    {1: None, 2: None, 3: None}
    >>> dict(zip(range(1, 4), range(1, 4)))
    {1: 1, 2: 2, 3: 3}
    

提交回复
热议问题