Skip to content

Instantly share code, notes, and snippets.

@slingam00
Created May 22, 2020 01:23
Show Gist options
  • Save slingam00/e2b789040a5b5e566c07685309e06505 to your computer and use it in GitHub Desktop.
Save slingam00/e2b789040a5b5e566c07685309e06505 to your computer and use it in GitHub Desktop.
myList = ['a', 'b', 'c', 'd', 'e']
print(myList[1:3]) # Result: ['b', 'c']
print(myList[0:4]) # Result: ['a', 'b', 'c', 'd']
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment