I need some help in Python, to print:

I have:

input =[(3, 'x1'), (5, 'x3'), (2, 'x2')]

need to print, in this form:

x1=3 x2=2 x3=3

Many thanks

link|improve this question

Is there a need to be the list of x's sorted? – eigenein Dec 5 '10 at 15:38
feedback

2 Answers

print ' '.join('%s=%s' % (k, v) for (v, k) in input)
link|improve this answer
feedback
for x,y in input: 
    print "%s=%s" % (y, x),
link|improve this answer
1  
or print ' '.join("%s=%d" % (y, x) for x,y in input) – Dan D. Dec 5 '10 at 15:34
thanks ;) second work – thaking Dec 5 '10 at 15:40
feedback

Your Answer

 
or
required, but never shown

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