Commit 5abe74a5 by BellCodeEditor

save project

parent 625c04f3
Showing with 5 additions and 5 deletions
bros=["刘备","关羽","张飞","吕布","曹操"]
bros.pop(3)
bros.remove("曹操")
print(bros)
\ No newline at end of file
a=["刘备","关羽","张飞"]
b=["吕布"]
b.extend(a)
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