Commit a908331d by BellCodeEditor

save project

parent a4ae8f60
Showing with 7 additions and 1 deletions
......@@ -13,5 +13,11 @@ bros[1]='刘备'
print(bros)
a=['华雄']
b=['袁术','夏侯惇','曹操','关羽']
b.pop(-1)
print(b)
a.append('关羽')
print(a)
c=['颜良','文丑']
a.pop(1)
a.extend(c)
print(a)
b.pop(-1)
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