Commit c9418eb3 by BellCodeEditor

save project

parent 69b12a06
Showing with 8 additions and 0 deletions
......@@ -3,3 +3,11 @@ list.pop(3)
print(list)
list.remove("刘备")
print(list)
list.insert(3,"关羽")
print(list)
list.append("孙权")
print(list)
c=["颜良","文丑"]
list.extend(c)
print(list)
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