Contact: aviboots(AT)netvision.net.il
39,885 questions
51,811 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'] '''