how to change a name of a list in parameters in python code example
Example: how to pass list in function with modified list
def ABC(li):
print(li)
l=[1,2,3]
ABC(l[:]+[6])
def ABC(li):
print(li)
l=[1,2,3]
ABC(l[:]+[6])