Created
August 1, 2020 19:16
-
-
Save masasa27/e2c712624ac32b0da08d09dec3d099af to your computer and use it in GitHub Desktop.
lst copy
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| lst = [1, 2, 3] | |
| lst3 = lst # copy the list memory location, lst3 and lst are the same object! | |
| lst2 = lst[:] # copy the list values, and not the memory location |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment