I had this question for long time in my mind perhaps the time has come for asking this question.
How do we effectively use the nature of self referencing list and dictionary to our advantage.
a = []
a[:] = [a]
b = {}
b['b'] = b
If possible can anyone explain this with an example.