Posts by SilvioHC • 1 point
1 post
-
0
votes5
answers158
viewsA: Python - Function that copies content from one list to another list
There is another way less efficient, but it does the same thing and the more methods better, since q can be applied in other situations. def Copiar(B): for i in B: A.append(i) A=[1,2,3,4]…