Skip to content

Instantly share code, notes, and snippets.

@dmmfll
Last active January 31, 2017 19:38
Show Gist options
  • Save dmmfll/decbbea39bbc0fd3a82a9d61ac80d5f3 to your computer and use it in GitHub Desktop.
Save dmmfll/decbbea39bbc0fd3a82a9d61ac80d5f3 to your computer and use it in GitHub Desktop.
Untitled.txt
gist_url
.ipynb_checkpoints/
Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
# coding: utf-8
# In[1]:
_list = list(range(10))
# In[2]:
_list[:] # copy an array, no mutation
# In[3]:
_list[1:]
# In[4]:
_list[1:-1]
# In[6]:
_list[1:len(_list) - 1] == _list[1:-1]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment