Cómo verificar Python para ver si la longitud de la lista es incluso

def check_length(lst):
  if len(lst) % 2 == 0:
    return "The list length is even."
  else:
    return "The list length is odd."
Mushy Moth