words = [\'John\', \'nice\', \'skateboarding\'] statement = \"%s you are so %s at %s\" % w for w in words
produces
File \"
>>> statement = "%s you are so %s at %s" % tuple(words) 'John you are so nice at skateboarding'