Commit 6165f733 by BellCodeEditor

save project

parent a8a114c8
Showing with 10 additions and 0 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)
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