Commit 3f11e043 by BellCodeEditor

save project

parent a687c5d8
Showing with 11 additions and 6 deletions
b.pop(2) a=['华雄']
b.remove("曹操") c=['颜良','文丑']
b.remove("关羽") a.append('颜良')
for i in range(3) a.append('文丑')
list.remove("香蕉")
\ No newline at end of file a.extend(c)
a.insert(0,'颜良')
a.insert(1,'文丑')
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