Commit 2f3990cc by BellCodeEditor

save project

parent eec7d9c6
Showing with 12 additions and 2 deletions
...@@ -12,4 +12,15 @@ bros[0]="关羽" ...@@ -12,4 +12,15 @@ bros[0]="关羽"
bros[1]="刘备" bros[1]="刘备"
print(bros) print(bros)
print(bro1) print(bro1)
print(bro2) print(bro2)b=["袁术","夏侯渊","曹操","关羽"]
\ No newline at end of file a=["华雄"]
b.pop(3)
print(b)
a.append("关羽")
c=["颜良","文丑"]
a.extend(c)
a=["吕布"]
d=["刘备","关羽","张飞"]
a.insert(1,b[0:4])
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