Inserting a string into a list without getting split into characters December 16, 2022 by Tarik To add to the end of the list: list.append('foo') To insert at the beginning: list.insert(0, 'foo')