Contact: aviboots(AT)netvision.net.il
42,187 questions
54,895 answers
573 users
Tuple1 = (3, 6, 0, 9) Tuple2 = (1, 4, 2, 8) union = tuple(set(Tuple1 + Tuple2)) print(union) ''' run: (0, 1, 2, 3, 4, 6, 8, 9) '''