📅  最后修改于: 2023-12-03 14:46:43.852000             🧑  作者: Mango
在Python中,字符串是一种不可变序列,它可以包含多个字符。有时候,我们需要将一个字符串按照特定的分隔符拆分成多个子字符串。这时候就可以使用Python字符串的分裂()方法。
语法:
string.split(separator, maxsplit)
参数说明:
返回值说明:
下面的示例代码展示了如何使用Python字符串分裂()方法:
str1 = 'hello,world'
print(str1.split(',')) # ['hello', 'world']
str2 = 'i am a student'
print(str2.split()) # ['i', 'am', 'a', 'student']
str3 = 'this is a test'
print(str3.split('i')) # ['th', 's ', 's a test']
str4 = 'a.b.c.d.e.f'
print(str4.split('.', 3)) # ['a', 'b', 'c', 'd.e.f']
Python字符串分裂()方法可以帮助我们快速的将一个字符串按照指定的分隔符拆分成多个子字符串。掌握这个方法可以让我们在处理字符串时更加方便和高效。