Contact: aviboots(AT)netvision.net.il
39,872 questions
51,796 answers
573 users
lst = ['123', '380', '75', '0', '50', '-1', '5' , '3'] lst.sort(key=int) print(lst) ''' run: ['-1', '0', '3', '5', '50', '75', '123', '380'] '''