To split a string object by another string we have the split method. \'this is an example\'.split(\'i\') results in [\'th\', \'s \', \'s an e
split
\'this is an example\'.split(\'i\')
[\'th\', \'s \', \'s an e