In [1]: s = ['H', 'e', 'l', 'l', 'o']
In [2]: ''.join(s)
Out[2]: 'Hello'
The join method is a bit different from others you may be familiar with in that you put the element you want to use to 'join` the elements together first, and then call the method on that. Here are some more examples:
In [4]: print '\n'.join(s)
H
e
l
l
o
In [5]: ' '.join(s)
Out[5]: 'H e l l o'
In [6]: 'GOODBYE'.join(s)
Out[6]: 'HGOODBYEeGOODBYElGOODBYElGOODBYEo'
The join method accepts any 'iterable', which is anything you can 'iterate' over (such as a list, as in your example). Strings themselves are also iterables, so you could even do this:
In [7]: s = 'Hello'
In [8]: 'Z'.join(s)
Out[8]: 'HZeZlZlZo'