Contact: aviboots(AT)netvision.net.il
42,236 questions
54,956 answers
573 users
lst = [x + y for x in [1, 2] for y in [5, 6]] print(lst) ''' run: [6, 7, 7, 8] '''