Commit 65f6bc41 by BellCodeEditor

auto save

parent b22a38e7
Pipeline #12040 failed in 0 seconds
Showing with 1 additions and 10 deletions
students = ["aa","bb","cc"]
students.remove("cc")
print(students)
o=["oo","ee"]
students.extend(o)
print(students)
red=students[-2:]
blue=students[:2]
print(red)
print(blue)
input()
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment