Commit bbd01196 by BellCodeEditor

save project

parent 50d84274
Showing with 9 additions and 2 deletions
...@@ -3,4 +3,12 @@ bros[0]="关羽" ...@@ -3,4 +3,12 @@ bros[0]="关羽"
bros[1]="刘备" bros[1]="刘备"
print(bros) print(bros)
bros.pop(0) bros.pop(0)
print(bros) print(bros)
\ No newline at end of file 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