uniqueid='xyz1235'
list1=[1,2,3,4]
list2=['a','b','c','d']
Desire output should be :- [('xyz1235',1, 'a'), ('xyz1235',2, 'b'), ('xyz1235',3, 'c'), ('xyz1235',4, 'd')]
With the help of Zip i am able to do with list1 and list2 but not able to add uniqueid string in this way. Can you please help.