知识点中
slice1 = append(slice1, 6, 7)
通过这个操作之后为什么slice1 的值会 []int{2, 3, 4, 6, 7}
在slice1的数据后面追加6,7两个元素在里面