Files
30-seconds-of-code/test/values_only/values_only.py
2018-04-01 13:56:31 -07:00

5 lines
102 B
Python

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