Commit 309e6011 by BellCodeEditor

save project

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