What is "[...]" in list ?Why the second output doesn't have double list ?I know that a and b share same id but, Why this is happening?
a = [1, 2, 3]
b =a
b.append(4)
print(a)
output :[1, 2, 3, 4]
a.append(b)
print(b)
output :[1, 2, 3, 4, [...]]#what happend here ?