Commit 16e7154b by BellCodeEditor

save project

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