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