Output with print: concatenate string, int float and list on the fly
print "%d %s %d you" % (1, 'spam', 4) print "%s -- %s -- %s" % (42, 3.14159, [1, 2, 3])