Commit 6608064c by BellCodeEditor

save project

parent 1d87d776
Showing with 11 additions and 0 deletions
a=["华雄"]
c=["颜良","文丑"]
a.extend(c)
print(a)
\ No newline at end of file
......@@ -3,3 +3,8 @@ b=["袁术","夏侯惇","曹操","关羽","孙赵"]
b.pop(-1)
b.pop(-2)
print(b)
c=["颜良","文丑"]
a.extend(c)
a.append("关羽")
a.append("孙赵")
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