q.py 212 Bytes Edit 1 2 3 4 5 6 7 8 dict_hero={'monkey three':10,'monkey one':21,'monkey five':22,'monkey team grow':29,'monkey seven':30} print(dict_hero) print(dict_hero['monkey team grow']) dict_hero["monkey seven"]=32 print(dict_hero)