String Splitting Function

  • Share this:

Code introduction


This function is used to split a string by a specified delimiter and return a list of split strings.


Technology Stack : String

Code Type : String Handling Function

Code Difficulty :


                
                    
def string_split(string, delimiter):
    return string.split(delimiter)                
              
Tags: