Python split string to list function
python
def split_string(string, delimeter):
return string.split(delimeter)