Commit 40160243 by BellCodeEditor

save project

parent 99fcc589
Showing with 3 additions and 7 deletions
a=["华雄"]
b=['袁术','夏侯惇','曹操','关羽']
b.pop(3)
print(b)
c=['颜良','文丑']
a=["吕布"]
b=['袁术',"公孙瓒",'关羽',"张飞","刘备",'曹操']
c=b[2:5]
a.extend(c)
a.insert(1,"关羽")
print(a)
\ 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