Write a python function thats returns a flat list of all the values in a flat dictionary
Topic: Write a python function thats returns a flat list of all the values in a flat dictionary
Solution
def values_only(flat_dict): return list(flat_dict.values())
List all Python Programs