Skip to content

Instantly share code, notes, and snippets.

@leangaurav
Created May 11, 2019 15:23
Show Gist options
  • Save leangaurav/9ec66175dc7489b4d3e9ded5811491ff to your computer and use it in GitHub Desktop.
Save leangaurav/9ec66175dc7489b4d3e9ded5811491ff to your computer and use it in GitHub Desktop.
l1 = [[10,20,30], 1, 2, 3]# a list with another list at index 0
l2 = list(l1)             # create a copy

l1.append(4)              # append to list l1
l1[0].append(40)          # modify the inner list of l1

print(l1)
print(l2)

Output
[[10, 20, 30, 40], 1, 2, 3, 4]
[[10, 20, 30, 40], 1, 2, 3]

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment