Contact: aviboots(AT)netvision.net.il
40,959 questions
53,424 answers
573 users
lst = [1, 2, 3] lst.extend([4, 5]) print(lst) ''' run: [1, 2, 3, 4, 5] '''