vote up 1 vote down star

Hi,

I'm new to python, and have a list of longs which I want to join together into a comma separated string.

In PHP I'd do something like this:

$output = implode(",", $array)

In Python, I'm not sure how to do this. I've tried using join, but this doesn't work since the elements are the wrong type (i.e., not strings). Do I need to create a copy of the list and convert each element in the copy from a long into a string? Or is there a simpler way to do it?

Thanks,

Ben

flag

6 Answers

vote up 12 vote down check

You have to convert the ints to strings and then you can join them:

','.join([str(i) for i in list_of_ints])
link|flag
Perfect! Thanks. – Ben Jan 13 at 11:31
2  
Non-beginner note: In Python 2.4+ you don't need the [ ] around the generator expression -- it'll be more efficient if you leave it off. – cdleary Jan 13 at 20:45
vote up 9 vote down

You can use map to transform a list, then join them up.

",".join( map( str, list_of_things ) )

BTW, this works for any objects (not just longs).

link|flag
as for the Weeble comment, maybe it's better to use itertools.imap() if list_of_things is very big – ZeD Jan 13 at 12:11
Few things are big enough or time-critical enough to justify itertools over built-in map. However, if benchmarking reveals that this is the bottleneck, you've got a way to speed things up. – S.Lott Jan 13 at 12:29
vote up 8 vote down

You can omit the square brackets from heikogerlach's answer since Python 2.5, I think:

','.join(str(i) for i in list_of_ints)

This is extremely similar, but instead of building a (potentially large) temporary list of all the strings, it will generate them one at a time, as needed by the join function.

link|flag
Python 2.4 added Generator Expressions, bounded by parens, generating values one at a time, unlike the square-bracketed list comprehensions which generate the entire list. Dropping the square brackets becomes a Generator Expression due to a shortcut for single-param function calls. – Andy Dent Jan 13 at 12:20
vote up 1 vote down

Just for the sake of it, you can also use string formatting:

",".join("%s" % i for i in list_of_things)
link|flag
vote up -2 vote down

Here i am giving an example please follow this its working.

$aSelectUserId = array(a,b,c,d,e);
$sCommaAdded   = implode( ",", $aSelectUserId );
echo $sCommaAdded; // Out put >>> a,b,c,d,e

Thanks Arya.

link|flag
I think the question was asking for a solution in python... – sth Jul 23 at 2:01
vote up 0 vote down

and yet another version more (pretty cool, eh?)

str(list_of_numbers)[1:-1]
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.