Skip to content

Instantly share code, notes, and snippets.

@instinctive
Created November 1, 2014 23:18
Show Gist options
  • Save instinctive/a7879cadc54bd0c2d216 to your computer and use it in GitHub Desktop.
Save instinctive/a7879cadc54bd0c2d216 to your computer and use it in GitHub Desktop.
Python koan (for beginners)
>>> a = [1,2,3]
>>> b = a
>>> a = a.append(9)
# what are the values of a and b?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment