Commit 183a2dd0 by BellCodeEditor

auto save

parent eb812dc1
Showing with 12 additions and 0 deletions
b=["10","20","30","40","50","60"]
b[0:3]
b[ :3]
print(b[0:3])
b[0:6]
b[ :6]
b[0: ]
print(b[0:6])
b[1:5]
b[1: ]
print(b[1:5])
\ 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