1.

How to copy one list to another in python?

A. l1[] = l2[]
B. l1[] = l2
C. l1[] = l2[:]
D. l1 = l2
Answer» D. l1 = l2


Discussion

No Comment Found