Списки и коллекции / Списки

numbers = [12345]
odd_items = [item for item in numbers if item % 2]
# odd_items is [1, 3, 5]

print(f'{odd_items = }')