bug.py 206 Bytes Edit 1 2 3 4 5 6 7 8 9 students = ["ww","ded","SB","gsdbfdrstgghftdgftjyffj"] students.remove("SB") print(students) students.append("屁股") print(students) red = students[0:2] blue = students[2:4] print(red) print(blue)