listA = ["A", "B", "C"] listB = ["1", "2", "3"] listC = ["!", "@", "#"]
如果我有这些列表,我将如何获得新的列表
[("A", "1", "!"), ("B", "2", "@"), ("!", "@", "#")]
python list python-3.x
list ×1
python ×1
python-3.x ×1