EdmontonPy
Inspired by the Python community, we hope to foster a strong, supportive, and proficient Python community in the Edmonton area.
edmontonpy.com
@edmontonpy
edmontonpy.slack.com
Oliver Antoniu
Yann
Latest Python at 3.7.1
DjangoCon US 2018 - videos are up
Ever needed to form a dictionary out of two lists?
Use zip()
keys = ['a', 'b', 'c']
vals = [1, 2, 3]
zipped = dict(zip(keys, vals))
# >> {'a': 1, 'b': 2, 'c': 3}
By EdmontonPy
Inspired by the Python community, we hope to foster a strong, supportive, and proficient Python community in the Edmonton area.