list.append(x) 从末尾加入元素xlist.extend([x,y]) 将整个参数列表连接到原列表后面list.insert(i,x)将元素x加入列表的第i个索引'+' 两个列表直接相加,后面的连接到前面的后面