students=["悟空", "小贝", "八戒", "波奇"]
students.append('诺依')
students.pop(2)
red=students[:2]
blue=students[2:]
print(students)
print(red)
print(blue)