Return a tuple of arguments to be fed to string.format() - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T19:57:11Z http://stackoverflow.com/feeds/question/539066 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/539066/return-a-tuple-of-arguments-to-be-fed-to-string-format 1 Return a tuple of arguments to be fed to string.format() Jekke 2009-02-11T22:10:10Z 2009-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#539102 1 Answer by Andrew Grant for Return a tuple of arguments to be fed to string.format() Andrew Grant 2009-02-11T22:20:26Z 2009-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#539106 10 Answer by Bartosz Radaczyński for Return a tuple of arguments to be fed to string.format() Bartosz Radaczyński 2009-02-11T22:20:47Z 2009-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>