>>> from copy import deepcopy
>>> lst1 = ['a','b',['ab','ba']]
>>> lst2 = deepcopy(lst1)
“a”
“b”
“ab”
“ba”
lst1
lst2