show/hide this revision's text 3 add str

For the second one, there is a built-in string method to do that :

>>> print ','.join(li2)
,'.join(str(x) for x in li2)
"0,1,2,3,4,5,6,7,8"

For the first one, you can use join within a comprehension list :

>>> print ",".join([",".join(x) ,".join([",".join(str(x) for x in li])
"0,1,2,3,4,5,6,7,8"

But it's easier to use itertools.flatten :

>>> import itertools
>>> print itertools.flatten(li)
[0,1,2,3,4,5,6,7,8]
>>> print ",".join(itertools.flatten(li))
,".join(str(x) for x in itertools.flatten(li))
"0,1,2,3,4,5,6,7,8"

N.B : itertools is a module that help you to deal with common tasks with iterators such as list, tuples or string... It's handy because it does not store a copy of the structure you're working on but process the items one by one.

EDIT : funny, I am learning plenty of way to do it. Who said that there was only one good way to do it ?

show/hide this revision's text 2 add itertools explanation

For the second one, there is a built-in string method to do that :

>>> print ','.join(li2)
"0,1,2,3,4,5,6,7,8"

For the first one, you can use join within a comprehension list :

>>> print ",".join([",".join(x) for x in li])
"0,1,2,3,4,5,6,7,8"

But it's easier to use itertools.flatten :

>>> import itertools
>>> print ",".join(itertools.flatten(li))
"0,1,2,3,4,5,6,7,8"

N.B : itertools is a module that help you to deal with common tasks with iterators such as list, tuples or string... It's handy because it does not store a copy of the structure you're working on but process the items one by one.

EDIT : funny, I am learning plenty of way to do it. Who said that there was only one good way to do it ?

show/hide this revision's text 1

For the second one, there is a built-in string method to do that :

>>> print ','.join(li2)
"0,1,2,3,4,5,6,7,8"

For the first one, you can use join within a comprehension list :

>>> print ",".join([",".join(x) for x in li])
"0,1,2,3,4,5,6,7,8"

But it's easier to use itertools.flatten :

>>> import itertools
>>> print ",".join(itertools.flatten(li))
"0,1,2,3,4,5,6,7,8"

EDIT : funny, I am learning plenty of way to do it. Who said that there was only one good way to do it ?