Commit aad02499 by BellCodeEditor

save project

parent d5e0ec41
Showing with 8 additions and 2 deletions
......@@ -13,4 +13,10 @@ bros[1]="刘备"
print(bros)
bros.pop(1)
bros.pop(-2)
b.remove("关羽")
\ No newline at end of file
b.remove("关羽")
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