Contact: aviboots(AT)netvision.net.il
40,849 questions
53,254 answers
573 users
from operator import * a = [1, 2, 3, 4] b = ['a', 'b', 'c'] print(concat(a, b)) ''' run: [1, 2, 3, 4, 'a', 'b', 'c'] '''