Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to get list of numbers from:

numbers= 1,2

to:

'1','2'

I tried ",".join(str(n) for n in numbers) but it wont give the targeted format.

share|improve this question
5  
This is unclear. Do you want that output as a string or list/tuple? – jamylak Jun 21 '12 at 13:35
What you describe isn't anything like "joining". – Karl Knechtel Jun 21 '12 at 13:48

4 Answers

up vote 10 down vote accepted
>>> numbers = 1,2
>>> print ",".join("'{0}'".format(n) for n in numbers)
'1','2'
share|improve this answer

Use this:

>>> numbers = [1, 2]
>>> ",".join(repr(str(n)) for n in numbers)
'1','2'
share|improve this answer
imo my solution is more explicit which is why I don't really like this method. – jamylak Jun 22 '12 at 12:57
1  
@jamylak You are right, that's why I up-voted yours. – kosii Jun 22 '12 at 13:01

How about that?

>>> numbers=1,2
>>> numbers
(1, 2)
>>> map(str, numbers)
['1', '2']
>>> ",".join(map(str, numbers))
'1,2'
share|improve this answer

What does your answer give?

>>> print ",".join(str(n) for n in numbers) 
1,2

If you really want '1','2' then do

>>> print ",".join("'%d'" % n for n in numbers)
'1','2'
share|improve this answer
1  
I hope you don't take this the wrong way, but you have a lovely chicken. – cheeken Jun 21 '12 at 16:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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