Commit aad02499 by BellCodeEditor

save project

parent d5e0ec41
Showing with 8 additions and 2 deletions
...@@ -13,4 +13,10 @@ bros[1]="刘备" ...@@ -13,4 +13,10 @@ bros[1]="刘备"
print(bros) print(bros)
bros.pop(1) bros.pop(1)
bros.pop(-2) bros.pop(-2)
b.remove("关羽") b.remove("关羽")
\ No newline at end of file a=['华雄']
c=['张良','文丑']
a.extend()(c)
print(a)
a.insert(1,"张飞")
a.append("张飞")
\ 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