Commit 86eb0db1 by BellCodeEditor

save project

parent eb97b386
Showing with 19 additions and 0 deletions
...@@ -13,3 +13,22 @@ bros[1]="刘备" ...@@ -13,3 +13,22 @@ bros[1]="刘备"
# bros.remove("关羽") # bros.remove("关羽")
# bros.pop(0) # bros.pop(0)
print(bros) print(bros)
a=["s"]
# b=["D","F"]
# a.extend(b)
# a.insert(1,"D")
# a.insert(2,"F")
a.append("D")
a.append("F")
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