给出两个列表: x = [1,2,3] y = [4,5,6] 什么是语法: 在y插入x使得y现在看起来像[1, 2, 3, [4, 5, 6]] ? 插入x所有项目,使y现在看起来像[1, 2, 3, 4, 5, 6] ?
列表方法append()和extend()之间有什么区别?