Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save litzomatic/2421824 to your computer and use it in GitHub Desktop.
Save litzomatic/2421824 to your computer and use it in GitHub Desktop.
Python: A bug waiting to happen.
A Python bug waiting to happen.
>>> x = ['1', '2', '3']
>>> x[:] = x[0]
>>> x
['1']
>>> x = ['10', '2', '3']
>>> x[:] = x[0]
>>> x
['1', '0']
>>> x[:] = x[0:1]
>>> x
['1']
>>>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment