flatten nexted list in python
flat_list = [] for list in my_list: for item in list: flat_list.append(item) return flat_list