Commit dbf926f1 by BellCodeEditor

save project

parent 33fe3041
Showing with 8 additions and 2 deletions
...@@ -14,4 +14,5 @@ bros[1]="刘备" ...@@ -14,4 +14,5 @@ bros[1]="刘备"
print(bros) print(bros)
''' '''
b=["nb","刘备","关羽","张飞"] b=["nb","刘备","关羽","张飞"]
b.pop(2) b.pop(2)
\ No newline at end of file print(b)
\ No newline at end of file
a=['华雄']
b=['文良','文丑']
a.extend(b)
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