Commit e6db9481 by BellCodeEditor

save project

parent 34b3ad7e
Showing with 8 additions and 3 deletions
......@@ -12,7 +12,12 @@
#bros[1]="刘备"
#bros.remove('张飞')
#print(bros)
a=['华雄']
b=['颜良','文丑']
a.extend(b)
#a=['华雄']
#b=['颜良','文丑']
#a.extend(b)
#print(a)
a=['吕布']
b=['袁术','公孙瓒','关羽','张飞','刘备','曹操']
c=b[2:5]
a.extend(c)
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