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
ls=['hello','world'] ls.append('python') ['hello', 'world', 'python']
or (use insert function where you can use index position in list)
insert
ls.insert(0,'python') print(ls) ['python', 'hello', 'world']