代码示例:(标识:python_list_concat_2)
python_list_concat_2.py
list1 = ["a", "b" , "c"]
list2 = [1, 2, 3]

for x in list2:
  list1.append(x)

print(list1)
运行结果: