Contact: aviboots(AT)netvision.net.il
41,229 questions
53,731 answers
573 users
lst = ["python", "c", "c++"] lst.extend(["c#", "java", "php", "nodejs"]) print(lst) ''' run: ['python', 'c', 'c++', 'c#', 'java', 'php', 'nodejs'] '''