numbers = [1, 2, 3, 4, 5]odd_items = [item for item in numbers if item % 2]# odd_items is [1, 3, 5]print(f'{odd_items = }')