Commit 7d7cab54 by BellCodeEditor

save project

parent 17bae76e
Showing with 14 additions and 7 deletions
#bor1="刘备"
#bor2="关羽"
#bor3="张飞"
#bros=["刘备","关羽","张飞"]
#bro1=["刘备",161,9.1]
#bor2=["关羽",160,8.5]
#bor3=["张飞",160,8.3]
#bros[0]="关羽"
#bros[1]="刘备"
#print(bros)
#b=['袁术','夏侯惇','曹操','关羽']
#b.remove('关羽')
#print(b)
#a=['华雄']
#a.append('颜良')
#a.append('文丑')
#print(a)
#a=['华雄']
#c=['颜良','文丑']
#a.extend(c)
#print(a)
#a=['吕布']
#b=['袁术','公孙瓒','刘备','关羽','张飞','曹操']
#a.extend(b[2:5])
#print(a)
a=['吕布']
c=['刘备','关羽','张飞']
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