operators_dict={'<':'less than','==':'equal'} print('Here is the original dict:') for key,val in sorted(operators_dict.items()): print(f'Operator {key} means {val}.')

dict2={'>':'greater than'} operators_dict.update(dict2) print() print('The dict was changed to:') for k,v in sorted(operators_dict.items()): print(f'Operator {k} means {v}.')