iterate through dictionary python key and value code example
Example: python loop through dictionary
new_list = [something(key, value) for key, value in a_dict.items()]
new_list = [something(key, value) for key, value in a_dict.items()]