Commit bbd01196 by BellCodeEditor

save project

parent 50d84274
Showing with 8 additions and 0 deletions
......@@ -4,3 +4,11 @@ bros[1]="刘备"
print(bros)
bros.pop(0)
print(bros)
b=["华雄"]
c=[]
d=["颜良","文丑"]
b.append("关羽")
b.insert(1,"关羽")
c.extend(d)
print(b)
print(c)
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