Contact: aviboots(AT)netvision.net.il
39,926 questions
51,859 answers
573 users
lst = ['python', 'c', 'php', 'java', "c#"] lst.sort(key=len) print(lst) ''' run: ['c', 'c#', 'php', 'java', 'python'] '''