To be more specific, I'm trying to print several results of a function in the form of a sentence like so print str(function(first)) + str(function(second)) + str(function(third)) and so on, but I've come across the problem that there are no spaces between the individual strings.
So, what I want to know is how I add spaces between each of those strings.