AoboSir 博客

与15年前的我比,我现在是大人;与15年后的我比,我现在还是个婴儿

Learning Python 025 字符串分割


  • 使用的电脑系统:Windows 10 64位
  • 使用的开发集成环境:PyCharm 2016.1.4
  • 使用的Python的版本:python2.7.10 或者 python 3.5.0

本博文对Python2和Python3都适用。


参考网站:Python split()方法

Python split()通过指定分隔符对字符串进行切片,返回一个列表。

语法:

1
zifuchuang.split(str, num)
  • str 分隔符
  • num 分割次数

实例:

1
2
3
4
str = r'D:\WorkSpace\test_ws\Git(GitHub)'
l = str.split('\\')
print(l)
print(str.split('\\', 1))

输出:

1
2
['D:', 'WorkSpace', 'test_ws', 'Git(GitHub)']
['D:', 'WorkSpace\\test_ws\\Git(GitHub)']

Comments