listA = ["A", "B", "C"]
listB = ["1", "2", "3"]
listC = ["!", "@", "#"]
If I have these lists, how would I get a new list of
[("A", "1", "!"), ("B", "2", "@"), ("!", "@", "#")]
listA = ["A", "B", "C"]
listB = ["1", "2", "3"]
listC = ["!", "@", "#"]
If I have these lists, how would I get a new list of
[("A", "1", "!"), ("B", "2", "@"), ("!", "@", "#")]