Commit 36532968 by BellCodeEditor

save project

parent 336b3742
Showing with 6 additions and 5 deletions
...@@ -3,11 +3,12 @@ ...@@ -3,11 +3,12 @@
# 从前啊,有三个bro,分别是:刘备、关羽、张飞... # 从前啊,有三个bro,分别是:刘备、关羽、张飞...
b=["袁术","夏侯淳","曹操","关羽"] b=["袁术","夏侯淳","曹操","关羽"]
b.pop(3) b.pop(3)
print(pop) print(b)
b=["袁术","夏侯淳","曹操","关羽"] b=["袁术","夏侯淳","曹操","关羽"]
b.remover("关羽") b.remove("关羽")
print(pop) print(b)
b=["袁术","夏侯淳","曹操","关羽"] b=["袁术","夏侯淳","曹操","关羽"]
b.pop(-1) b.pop(-1)
\ No newline at end of file print(b)
\ 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