📜  使用 for 循环在 python 中加入两个列表 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:26.557000             🧑  作者: Mango

代码示例1
list1 = ["a", "b" , "c"]
list2 = [1, 2, 3]

for x in list2:
  list1.append(x)

print(list1)