Contact: aviboots(AT)netvision.net.il
41,381 questions
53,927 answers
573 users
lst = [3, 7, 8, 2, 0, 9, 5] lst.sort() print(lst) ''' run: [0, 2, 3, 5, 7, 8, 9] '''