5 lines
102 B
Python
5 lines
102 B
Python
def values_only(dict):
|
|
lst = []
|
|
for k, v in dict.items():
|
|
lst.append(v)
|
|
return lst |