File size: 143 Bytes
240e0a0
 
 
 
 
1
2
3
4
5
6
def dict_to_list(input_dict):
    items_list = []
    for _, item in input_dict.items():
        items_list.append(item)
    return items_list