vhkm.py 198 Bytes Edit 1 2 3 4 5 6 7 8 9 students = ["bhjb","cccch","vcyy","xghd"] students.remove("vcyy") print(students) students.append("hhgfx") print(students) red = (students)[:2] blue = (students)[2:] print(red) print(blue)