= {'one':23, 'two':7, 'three':9}
x x
{'one': 23, 'two': 7, 'three': 9}
= {'one':23, 'two':7, 'three':9}
x x
{'one': 23, 'two': 7, 'three': 9}
type(x)
dict
= {'four':68, 'five':19} z
**x, **z} {
{'one': 23, 'two': 7, 'three': 9, 'four': 68, 'five': 19}
keys()
: Get dictionary keys x.keys()
dict_keys(['one', 'two', 'three'])
values()
: Get dictionary values x.values()
dict_values([23, 7, 9])