split() returns a list after breaking a string using delimiter and max value
my_str.split(delimiter,max_value)
delimiter : (default is space), required, to be used to break the string max_value : optional , the number of elements in output plus one. Default value is -1 so it includes all occurrence.