map()

Returns a list by applying a function to an input list.

In [7]: a = (u'h', u'a', u'l', u'l', u'o')
In [8]: "".join(map(str, a))
Out[8]: 'hallo'