format_list = lambda x: [i for i in x[1::2]] new_list = format_list(["A", "B", "C", "D", "E", "F"]) print(new_list)
Output:['B', 'D', 'F']