Contact: aviboots(AT)netvision.net.il
39,844 questions
51,765 answers
573 users
from itertools import repeat lst = [8, 4, 7, 6, 2, 9, 5, 3] ch = 'X' result = list(zip(lst, repeat(ch))) print(str(result)) ''' run: [(8, 'X'), (4, 'X'), (7, 'X'), (6, 'X'), (2, 'X'), (9, 'X'), (5, 'X'), (3, 'X')] '''