Quick actions

cmd+k|ctrl+k

Navigation

Languages

My favorite thing

Snippet info

Language

Python

Visibility

public

Author

nicole

Created

2015-07-04T01:40:29Z

Updated

2015-07-04T01:40:29Z

keys = ["x", "y", "z"]
values = [1, 2, 3]

d = dict(zip(keys, values))

print(d)
INFO