Commit b87ff318 by BellCodeEditor

save project

parent 2016b2f3
Showing with 6 additions and 3 deletions
...@@ -6,6 +6,12 @@ brys.insert(5,"张良") ...@@ -6,6 +6,12 @@ brys.insert(5,"张良")
brys.append("华雄") brys.append("华雄")
brys.extend(a) brys.extend(a)
print(brys) print(brys)
brys[0:]
brys[:2]
brys[0:3]
brys[:]
print(brys)
...@@ -13,5 +19,3 @@ print(brys) ...@@ -13,5 +19,3 @@ print(brys)
# a=['华雄']
# b=['']
\ 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