costs = [1,3,5,7,9]
costs1 = costs
costs1.append(costs)
print(f"Output 1 : {costs}")
print(f"Output 2 : {costs1}")
# output 1 : [1, 3, 5, 7, 9, [...]]
# output 2 : [1, 3, 5, 7, 9, [...]]
What does [...] mean in the output???Can anyone please explain this