Skip to content

Instantly share code, notes, and snippets.

@jeff-hager-dev
Created February 18, 2015 17:09
Show Gist options
  • Save jeff-hager-dev/a050c5b3e6a4866b8949 to your computer and use it in GitHub Desktop.
Save jeff-hager-dev/a050c5b3e6a4866b8949 to your computer and use it in GitHub Desktop.
Deep Copy a 2d array in python
def twoDim_deep_copy(srcArray, destArray):
destArray = [row[:] for row in srcArray]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment