Commit 09cb2745 by BellCodeEditor

save project

parent 3caa0331
Showing with 6 additions and 0 deletions
...@@ -9,4 +9,9 @@ print(a) ...@@ -9,4 +9,9 @@ print(a)
a=["华雄"] a=["华雄"]
c=["颜良","文丑"] c=["颜良","文丑"]
a.extend(c) a.extend(c)
print(a)
#三英战吕布
a=["吕布"]
b=["刘备","关羽","张飞","曹操"]
a.extend(b[0:3])
print(a) 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