I have a list of lists with int and string like this:
l = [[1, "two", 3],["four", 5, "six"]]
.
I need to generate one string, startig a new line for each list, separeted by a semicolon. Like this:
"1, two, 3;
four, 5, six;"
How can I do this?
I have a list of lists with int and string like this:
l = [[1, "two", 3],["four", 5, "six"]]
.
I need to generate one string, startig a new line for each list, separeted by a semicolon. Like this:
"1, two, 3;
four, 5, six;"
How can I do this?