View difference between Paste ID: 9DNFurHE and vygdvbnJ
SHOW: | | - or go back to the newest paste.
1
first_list = [[0, 1, 2], [3, 4, 5]]
2
second_list = list(first_list)
3
first_list.append([6, 7, 8])
4
first_list[1][0] = 9
5
6
print(first_list)
7
print(second_list)
8