Python3: Excluindo e apenas mostrando números desiguais da lista.

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