I've checked the post and answers on the SO post Printing list elements on separated lines in Python, while I think my problem is a different one.
What I want is to transform:
lsts = [[1], [1, 1], [1, 2, 1], [1, 3, 3, 1], [1, 4, 6, 4, 1]]
into the output like below:
[[1],
[1, 1],
[1, 2, 1],
[1, 3, 3, 1],
[1, 4, 6, 4, 1]]
I tried append, print in the for loop and "\n".join() but all failed.