Commit 706d1fd9 by BellCodeEditor

save project

parent 6550e6dd
Showing with 4 additions and 3 deletions
...@@ -2,9 +2,10 @@ a = ["吕布"] ...@@ -2,9 +2,10 @@ a = ["吕布"]
b = ["袁术","曹操","颜良","文丑","关羽"] b = ["袁术","曹操","颜良","文丑","关羽"]
b.remove("颜良") b.remove("颜良")
b.remove("文丑") b.remove("文丑")
a.extend("颜良","文丑") a.insert(1,"文丑")
a.insert(2,"颜良")
print(a)
print(b)
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