Commit 8e3c5036 by BellCodeEditor

save project

parent f78d166a
Showing with 9 additions and 6 deletions
b=['袁术','夏侯淳','曹操','关羽']
b.pop(3)
b.remove("关羽")
b.pop(-1)
print()
\ No newline at end of file
a=['华雄']
b=['颜良','文丑']
a.extend(b)
print(a)
a=['华雄']
a.append('文丑')
a.append('颜良')
print(a)
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