Commit 207b5e1c by BellCodeEditor

save project

parent 269a0ad1
Showing with 8 additions and 5 deletions
b=['袁术','夏侯淳','曹操','关羽']
b.pop(3)
b.pop(-1)
b.remove('关羽')
\ No newline at end of file
b=['袁术','夏侯淳','曹操','关羽']
b.pop(0)
b.pop(-4)
b.remove('袁术')
a='华雄'
a.insert('关羽',1)
a.append(1,'华雄')
\ No newline at end of file
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