Answers for "how to pass list in function with modified list"

0

how to pass list in function with modified list

def ABC(li):
    print(li)
l=[1,2,3]
ABC(l[:]+[6])
Posted by: Guest on April-27-2020

Code answers related to "how to pass list in function with modified list"

Browse Popular Code Answers by Language