For example, if I have:
l = [["apple", "orange", "banana"], ["grape", "strawberry", "raspberry"]]
I'd like if it could print:
["apple", "orange", "banana"]
["grape", "strawberry", "raspberry"]
instead of:
[["apple", "orange", "banana"], ["grape", "strawberry", "raspberry"]]
Easy way to do this?