Python怎么用+把两个列表连接起来呢?#Python2022-05-06 21:54分类:Python 0 条评论 请先 登录 后评论 默认排序 时间排序 1 个回答|268 次阅读 2022-05-06 21:54 Coco老师 - 官方公众号:青少儿编程学习网 擅长:编程教育 • 网站:https://kidscodes.cn/list1 = ["a", "b", "c"]list2 = [1, 2, 3]list3 = list1 + list2print(list3)执行结果:['a', 'b', 'c', 1, 2, 3] 请先 登录 后评论