运行 ❯
获得
自己的 Python
服务器
×
更改方向
更改主题,暗/亮
前往 Spaces
list1 = ["a", "b" , "c"] list2 = [1, 2, 3] for x in list2: list1.append(x) print(list1)
['a', 'b', 'c', 1, 2, 3]