Skip to content

Instantly share code, notes, and snippets.

@kmicinski
Created September 15, 2018 20:54
Show Gist options
  • Save kmicinski/58dc05d9f14bb4a216e2d51727b5fc9f to your computer and use it in GitHub Desktop.
Save kmicinski/58dc05d9f14bb4a216e2d51727b5fc9f to your computer and use it in GitHub Desktop.
>>> x = [[0] * 3] * 3
>>> x[1][1] = 3
>>> x
[[0, 3, 0], [0, 3, 0], [0, 3, 0]]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment