Commit 13626ae3 by BellCodeEditor

save project

parent 08c28d78
...@@ -21,3 +21,11 @@ list.remove('香蕉') ...@@ -21,3 +21,11 @@ list.remove('香蕉')
#list.pop(5) #list.pop(5)
#list.pop(1,3,5) #list.pop(1,3,5)
a=['华雄']
a.append('颜良','文丑')
print(a)
#a=['华雄']
#c=['颜良','文丑']
#a.extend(c)
#print(a)
\ No newline at end of file
a=['华雄']
c=['颜良','文丑']
a.extend(c)
print(a)
\ No newline at end of file
...@@ -2,7 +2,3 @@ a=['华雄'] ...@@ -2,7 +2,3 @@ a=['华雄']
a.append('颜良','文丑') a.append('颜良','文丑')
print(a) print(a)
#a=['华雄']
#c=['颜良','文丑']
#a.extend(c)
#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