去除列表中前两个和最后一个元素, * (一个星号) 取不定长列表:
list = [1, 2, 3, 4, 5]f, s, *m, l = listprint(f)print(s)print(m)print(l)