Return a tuple of arguments to be fed to string.format() - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T19:57:11Zhttp://stackoverflow.com/feeds/question/539066http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/539066/return-a-tuple-of-arguments-to-be-fed-to-string-format1Return a tuple of arguments to be fed to string.format()Jekke2009-02-11T22:10:10Z2009-02-11T22:20:47Z
<p>Currently, I'm trying to get a method in Python to return a list of zero, one, or two strings to plug into a string formatter and then pass them to the string method. My code looks something like this:</p>
<pre><code>class PairEvaluator(HandEvaluator):
def returnArbitrary(self):
return ('ace', 'king')
pe = PairEvaluator()
cards = pe.returnArbitrary()
print('Two pair, {0}s and {1}s'.format(cards))
</code></pre>
<p>When I try to run this code, the compiler gives an IndexError: tuple index out of range.</p>
<p>How should I structure my return value to pass it as an argument to .format()?</p>
http://stackoverflow.com/questions/539066/return-a-tuple-of-arguments-to-be-fed-to-string-format/539102#5391021Answer by Andrew Grant for Return a tuple of arguments to be fed to string.format()Andrew Grant2009-02-11T22:20:26Z2009-02-11T22:20:26Z<p>This attempts to use "cards" as single format input to print, not the contents of cards.</p>
<p>Try something like;</p>
<p>print('Two pair, %ss and %ss' % cards)</p>
http://stackoverflow.com/questions/539066/return-a-tuple-of-arguments-to-be-fed-to-string-format/539106#53910610Answer by Bartosz Radaczyński for Return a tuple of arguments to be fed to string.format()Bartosz Radaczyński2009-02-11T22:20:47Z2009-02-11T22:20:47Z<pre><code>print('Two pair, {0}s and {1}s'.format(*cards))
</code></pre>
<p>You are missing only the star :D</p>