Commit bb190e3a by BellCodeEditor

save project

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