Commit bc0aa6bf by BellCodeEditor

save project

parent 0ccb3263
Showing with 9 additions and 0 deletions
...@@ -10,5 +10,14 @@ a = ["华雄"] ...@@ -10,5 +10,14 @@ a = ["华雄"]
b=["刘备","夏侯惇","吕布","关羽"] b=["刘备","夏侯惇","吕布","关羽"]
b.pop(3) b.pop(3)
print(b) print(b)
c = ["颜良","文丑"]
a.extend(c)
a.append("关羽")
print(a)
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