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

I've written a function in python that returns a list, for example [(1,1),(2,2),(3,3)] etc But i want the output as a string so i can replace the comma with another char so the output would be 1@1 2@2 3@3 etc..

any easy way around this?:) thanx for any tips in advance

share|improve this question
Thanx everyone :) – user457142 Nov 26 '10 at 11:29

7 Answers

up vote 2 down vote accepted

This looks like a list of tuples, where each tuple has two elements.

' '.join('%d@%d' % (t[0],t[1]) for t in l)

Which can of course be simplified to:

' '.join('%d@%d' % t for t in l)

Where l is your original list. This generates 'number@number' pairs for each tuple in the list. These pairs are then joined with spaces (' ').

The join syntax looked a little weird to me when I first started woking with Python, but the documentation was a huge help.

share|improve this answer
instead of (' ') could i add \n somewhere so the output returns as a column with one string on each new line? – user457142 Nov 26 '10 at 11:36
Sure you can! Why not try print '\n'.join('%d@%d' % t for t in l) in the Python interpreter? – Johnsyweb Nov 26 '10 at 19:51

' '.join([str(a)+"@"+str(b) for (a,b) in [(1,1),(2,2),(3,3)]])

or for arbitrary tuples in the list,

' '.join(['@'.join([str(v) for v in k]) for k in [(1,1),(2,2),(3,3)]])

share|improve this answer

You could convert the tuples to strings by using the % operator with a list comprehension or generator expression, e.g.

ll = [(1,1), (2,2), (3,3)]
['%d@%d' % aa for aa in ll]

This would return a list of strings like:

['1@1', '2@2', '3@3']

You can concatenate the resulting list of strings together for output. This article describes half a dozen different approaches with benchmarks and analysis of their relative merits.

share|improve this answer
In [1]: ' '.join('%d@%d' % (el[0], el[1]) for el in [(1,1),(2,2),(3,3)])
Out[1]: '1@1 2@2 3@3'
share|improve this answer
[ str(e[0]) + ',' + str(e[1]) for e in [(1,1), (2,2), (3,3)] ]

This is if you want them in a collection of string, I didn't understand it if you want a single output string or a collection.

share|improve this answer
[str(item).replace(',','@') for item in [(1,1),(2,2),(3,3)]]
share|improve this answer
" ".join(map(lambda el:"%d@%d" % el, [(1,1), (2,2), (3,3)]))
share|improve this answer

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.