I tried to use append with multiple lists at the same time (in a continual line).
However, it added all the items to all of my lists. Please see the script and result below:
x1=y1=z1=[]
for i in range(1,5):
x1.append(i)
y1.append(i*4)
z1.append(i*10)
print ("\n x1=", x1,"\n y1=", y1,"\n z1=", z1)
Result:
x1= [1, 4, 10, 2, 8, 20, 3, 12, 30, 4, 16, 40]
y1= [1, 4, 10, 2, 8, 20, 3, 12, 30, 4, 16, 40]
z1= [1, 4, 10, 2, 8, 20, 3, 12, 30, 4, 16, 40]
Thanks for your comment.