Python 中的字符串分割函数: split() 详解
split()
是 Python 中的一个字符串方法,用于将字符串通过指定的分隔符拆分为子字符串列表。
基本语法:
str.split([separator [, maxsplit]])
参数说明:
separator
(可选):指定用作分隔符的字符串。默认为空白字符,包括空格、换行\n
、制表符\t
等。maxsplit
(可选):指定分割次数,remain part will be one string.
返回值:
返回一个字符串列表,由原字符串以 separator
为分隔符拆分得到。
示例代码:
text = "one two three four"
# 默认使用空白字符作为分隔符
print(text.split()) # 输出: ['one', 'two', 'three', 'four']
# 使用逗号作为分隔符
fruit = "apple,banana,cherry"
print(fruit.split(',')) # 输出: ['apple', 'banana', 'cherry']
# 限制分割次数
colors = "red,blue,green,yellow"
print(colors.split(',', 2)) # 输出: ['red', 'blue', 'green,yellow']
评论已关闭