def values_only(dict): lst = [] for k, v in dict.items(): lst.append(v) return lst