Python3: Usuwanie równomierne i wyświetlanie tylko nierównomiernych liczb z listy Set.

def delete_starting_evens(lst):
  while (len(lst) > 0 and lst[0] % 2 == 0):
    lst = lst[1:]
  return lst
Alexandros Sechitai