You can download this code by clicking the button below.
This code is now available for download.
Splits a string into a list using a specified separator.
Technology Stack : String
Code Type : String processing
Code Difficulty : Beginner
def string_split(string, separator):
return string.split(separator)