Commit ef839a4d by BellCodeEditor

save project

parent 02d674d3
Showing with 5 additions and 4 deletions
......@@ -3,6 +3,7 @@ students.pop(2)
print(students)
students.insert(2,"诺依")
print(students)
red = students[0,2]
blue = students[1,4]
print(students)
\ No newline at end of file
red = students[0:2]
blue = students[1:4]
print(red)
print(blue)
\ No newline at end of file
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