Is there a more concise way of doing this in Python?:
def toDict(keys, values):
d = dict()
for k,v in zip(keys, values):
d[k] = v
return d
|
1
|
|
|
|
|
|
Yes:
|
||
|
|
|
If
Example:
NOTE: |
||
|
|
|
|
Along with the correct answers you've had so far for the technique, I'll point out that ‘to_dict’ is more Pythonic than ‘toDict’ when naming a function. See PEP 8 for the style recommendations for writing Python code. |
||||
|