In python, you have dictionary, d = {'a':1, 'b':2, 'c':3}, and you have dictionary, d2 = {'d': 4, 'e': 5}, what is easiest way (one line) to add all items of d2 to d, such that d ends up being {'a':1, 'b':2, 'c':3, 'd':4, 'e':5}
Answer
d.update(d2)
Question
In python, you have dictionary, d = {'a':1, 'b':2, 'c':3}, and you have dictionary, d2 = {'d': 4, 'e': 5}, what is easiest way (one line) to add all items of d2 to d, such that d ends up being {'a':1, 'b':2, 'c':3, 'd':4, 'e':5}
Answer
?
Question
In python, you have dictionary, d = {'a':1, 'b':2, 'c':3}, and you have dictionary, d2 = {'d': 4, 'e': 5}, what is easiest way (one line) to add all items of d2 to d, such that d ends up being {'a':1, 'b':2, 'c':3, 'd':4, 'e':5}
Answer
d.update(d2)
If you want to change selection, open document below and click on "Move attachment"
pdf
owner: kkhosravi - (no access) - PYTHON_DATA_STRUCTURES_AND_ALGORITHMS.pdf, p54
Summary
status
not learned
measured difficulty
37% [default]
last interval [days]
repetition number in this series
0
memorised on
scheduled repetition
scheduled repetition interval
last repetition or drill
Details
No repetitions
Discussion
Do you want to join discussion? Click here to log in or create user.