Soru: Write a function, length, that takes in a list as the input. If the length of the list is greater than or equal to 5, return "Longer than 5". If the length is less than 5, return "Less than 5". Cevap: listegir = input("Listenin elemanlarını giriniz: ") Liste = listegir.split() def length(Liste): for i in Liste: if len(Liste) >= 5: return "Longer than 5" else: return "Less than 5" print(length(Liste))