Skip to content

Instantly share code, notes, and snippets.

@jquast
Created October 30, 2014 20:26
Show Gist options
  • Save jquast/71e70ddbea65b25bc068 to your computer and use it in GitHub Desktop.
Save jquast/71e70ddbea65b25bc068 to your computer and use it in GitHub Desktop.
In [8]: val = [3]
In [9]: a.li.append(val)
In [10]: a.li
Out[10]: [1, [3]]
In [11]: val.append(4)
In [12]: a.li
Out[12]: [1, [3, 4]]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment