I\'m new to Python and can\'t find a way to insert a string into a list without it getting split into individual characters:
>>> list=[\'hello\',\'w
To add to the end of the list:
list.append('foo')
To insert at the beginning:
list.insert(0, 'foo')