Trying below simple code with list.
a = []
a.append(a)
print(a)
Getting below output.
[[...]]
Why are the three dots inside?
Trying below simple code with list.
a = []
a.append(a)
print(a)
Getting below output.
[[...]]
Why are the three dots inside?