python initialize dictionary with int code example
Example 1: python create a dictionary of integers
>>> dict([(1, 2), (3, 4)])
{1: 2, 3: 4}
Example 2: python create a dictionary of integers
>>> 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}