Skip to content

Instantly share code, notes, and snippets.

@justinfay
Created June 9, 2015 15:44
Show Gist options
  • Select an option

  • Save justinfay/892ddff21aa5cad0b984 to your computer and use it in GitHub Desktop.

Select an option

Save justinfay/892ddff21aa5cad0b984 to your computer and use it in GitHub Desktop.
>>> a = 1,
>>> assert (1,) == a
>>> a
(1,)
>>> l = []
>>> l.append(a)
>>> l
[(1,)]
>>> l.append(1,)
>>> l
[(1,), 1]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment