I have some LINQ code that generates a list of strings, like this:
var data = from a in someOtherList orderby a select FunctionThatReturnsS
Alternative:
>>> data = ['Some ', 'resulting ', 'data here.'] >>> s = ''.join(data) >>> s 'Some resulting data here.'