Skip to content

Instantly share code, notes, and snippets.

@Linus-Albertus
Created May 26, 2019 11:16
Show Gist options
  • Save Linus-Albertus/c719fa240137386145b27e83b2dc866b to your computer and use it in GitHub Desktop.
Save Linus-Albertus/c719fa240137386145b27e83b2dc866b to your computer and use it in GitHub Desktop.
[copy nested lists] Copy a list of lists #python #list
from copy import deepcopy
old_list = [[1,2], [3,4]]
new_list = deepcopy(old_list)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment