Commit 36532968 by BellCodeEditor

save project

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