Commit 16e7154b by BellCodeEditor

save project

parent 595df58d
Showing with 5 additions and 0 deletions
......@@ -2,4 +2,6 @@
a= ['华雄']
a.append('颜良','文丑')
print(a)
b=["yyds(永远滴神)","yyds(永远的屎)"]
a.extend(b)
......@@ -2,4 +2,7 @@
a= ['华雄']
c=['颜良','文丑']
a.extend(c)
b=["yyds(永远滴神)","yyds(永远的屎)","yyds(硬硬的屎)","yyds(阴阳大师)"]
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