Contact: aviboots(AT)netvision.net.il
40,886 questions
53,294 answers
573 users
list1 = ['z', 'g', 'w', 'o', 'p'] list2 = ['k', 's', 'm', 'x', 'f'] for ch1, ch2 in zip(list1, list2): print(ch1, ch2) ''' run z k g s w m o x p f '''