Commit 65ba0615 by BellCodeEditor

auto save

parent 69904757
Showing with 11 additions and 0 deletions
b=['袁术','夏侯惇','曹操','关云长']
b.remove('关云长')
print(b)
a=['华雄']
a.insert(1,'关云长')
print(a)
c=['吕布']
d=['袁术','公孙瓒','关云长','刘玄德','张翼德','曹操']
c.extend(d[2:5])
print(c)
\ 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