整理Python 常用string函数(收藏)
1. split()
1.1 功能
函数split()
是Python中一个常用的字符串函数,它以某个字符或字符串为分隔符,将一个字符串分割为多个子字符串,并返回一个由这些子字符串组成的列表。例如,可以使用split()
将一个句子分割成多个单词。
1.2 语法
str.split([sep[, maxsplit]])
其中,sep
为分隔符,如果忽略该参数,则默认使用空格作为分隔符;maxsplit
为可选参数,表示最大的分割次数。默认值为-1,表示分割所有的子字符串。
1.3 示例
>>>sentence = "This is a sentence."
>>>words = sentence.split()
>>>print(words)
['This', 'is', 'a', 'sentence.']
>>>path = "/usr/local/bin/python"
>>>directories = path.split('/')
>>>print(directories)
['', 'usr', 'local', 'bin', 'python']
2.join()
2.1 功能
函数join()
是Python中一个常用的字符串函数,它可以将一个列表或其他可迭代的对象中的元素连接成一个字符串,并返回这个字符串。例如,可以使用join()
将多个单词连接成一个句子。
2.2 语法
str.join(iterable)
其中,iterable
为一个可迭代的对象,例如列表或元组等。
2.3 示例
>>>words = ['This', 'is', 'a', 'sentence.']
>>>sentence = ' '.join(words)
>>>print(sentence)
'This is a sentence.'
>>>directories = ['', 'usr', 'local', 'bin', 'python']
>>>path = '/'.join(directories)
>>>print(path)
'/usr/local/bin/python'
以上就是两个常用的Python字符串函数split()
和join()
的介绍。这些函数在很多场景下非常常用,特别是在对字符串进行分割和连接时。
本站文章如无特殊说明,均为本站原创,如若转载,请注明出处:整理Python 常用string函数(收藏) - Python技术站