Commit 309e6011 by BellCodeEditor

save project

parent 07eaa604
Showing with 11 additions and 10 deletions
b=['袁术','夏侯惇','曹操','关羽']
b.pop(3)
b=['袁术','夏侯惇','曹操','关羽']
b.pop(0)
b=['袁术','夏侯惇','曹操','关羽']
b.pop(2)
a= ['华雄']
a.append('颜良')
a.append('文丑')
print(a)
list=['苹果','香蕉','西瓜','香蕉','桃子','香蕉']
list.remove('香蕉')
print(list)
\ No newline at end of file
s= ['华雄']
d=[1,2,3,4,5]
s.extend(d)
s.extend(c)
print(s)
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