Commit 960d5108 by BellCodeEditor

save project

parent 20e0d335
Showing with 11 additions and 7 deletions
......@@ -3,11 +3,15 @@
# 和你的小伙伴用列表讲讲温酒斩华雄的故事,上半集,并完成下面的挑战:
#这时还是无名小卒的关羽上前请战,请从b列表中删掉“关羽”,用三种方法哦。
b=["曹操","夏侯惇","关羽","张飞","赵云"]
b.pop(2)
print(b)
b.pop(-3)
print(b)
b.remove("曹操")
print(b)
a=["华雄"]
a.insert(1,"关羽")
print(a)
a.append("颜良")
print(a)
b=["文丑","朱","孙"]
a.extend(b)
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