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