# 列表test = [11, 22, 33, 44, 55, 22]# append方法,在test列表末尾增加一个元素# append(self, p_object) 参数:p_object:待添加的元素# test.append(66)# test.append([77, 88])# clear方法,清空test列表中的所有元素,变为空列表 test[]# test.clear()# copy方法,浅拷贝test列表# v = test.copy()# count方法,计算test列表中指…