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
print ' '.join('%s=%s' % (k, v) for (v, k) in input)
for x,y in input: print "%s=%s" % (y, x),
print ' '.join("%s=%d" % (y, x) for x,y in input)
This is a collaboratively edited question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
about » faq »
tagged
asked
1 year ago
viewed
165 times
active
11 months ago
Get the weekly newsletter!
see an example newsletter