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 c
This attempts to use "cards" as single format input to print, not the contents of cards.
Try something like:
print('Two pair, %ss and %ss' % cards)