Python Split Function Explained
The split function is used to separate a string based on a specified delimiter and returns a list of the resulting substrings. By default, the split function uses a space as the delimiter, but other delimiters can also be specified as needed. For example:
s = "hello,world"
result = s.split(",")
print(result)
# 输出结果为 ['hello', 'world']
In the example above, the split function divides the string “hello,world” at the comma, returning a list containing two substrings ‘hello’ and ‘world’.