Contact: aviboots(AT)netvision.net.il
41,230 questions
53,732 answers
573 users
tpl = (1, 2, 3, 4) repeated_tuple = tpl * 2 print(repeated_tuple) ''' run: (1, 2, 3, 4, 1, 2, 3, 4) '''