通过指定分隔符对字符串进行切片
split() 方法语法:
str.split(str="", num=stpring.count(str)).
- str -- 分隔符,默认为所有的空字符,包括空格、换行(\n)、制表符(\t)等。
- num -- 分割次数。默认为 -1, 即分隔所有。
返回分割后的字符串列表。
实例
#!/usr/bin/python
# -*- coding: UTF-8 -*-
str = "Line1-abcdef \nLine2-abc \nLine4-abcd";
print str.split( ); # 以空格为分隔符,包含 \n
print str.split(' ', 1 ); # 以空格为分隔符,分隔成两个
以上实例输出结果如下:
['Line1-abcdef', 'Line2-abc', 'Line4-abcd']
['Line1-abcdef', '\nLine2-abc \nLine4-abcd']
例如monodepth2里对数据集里的数据进行分割:
#index是train_txt中的第index行
line = self.filenames[index].split()
参考文章:
https://www.runoob.com/python/att-string-split.html