您当前的位置:首页 > IT编程 > python
| C语言 | Java | VB | VC | python | Android | TensorFlow | C++ | oracle | 学术与代码 | cnn卷积神经网络 | gnn | 图像修复 | Keras | 数据集 | Neo4j | 自然语言处理 | 深度学习 | 医学CAD | 医学影像 | 超参数 | pointnet | pytorch |

自学教程:Python3 split()方法

51自学网 2023-01-08 20:10:59
  python
这篇教程Python3 split()方法写得很实用,希望能帮到您。

描述

split()通过指定分隔符对字符串进行切片,如果参数 num 有指定值,则仅分隔 num+1 个子字符串

语法

split()方法语法:

str.split(str="", num=string.count(str))

参数

  • str -- 分隔符,默认为所有的空字符,包括空格、换行(/n)、制表符(/t)等。
  • num -- 分割次数。默认为 -1, 即分隔所有。

返回值

返回分割后的字符串列表。

实例

以下实例展示了split()函数的使用方法:

实例(Python 3.0+)

#!/usr/bin/python3 str = "this is string example....wow!!!"print (str.split( )) # 以空格为分隔符print (str.split('i',1)) # 以 i 为分隔符print (str.split('w')) # 以 w 为分隔符

以上实例输出结果如下:

['this', 'is', 'string', 'example....wow!!!']['th', 's is string example....wow!!!']['this is string example....', 'o', '!!!']

以下实例以 # 号为分隔符,指定第二个参数为 1,返回两个参数列表。

实例(Python 3.0+)

#!/usr/bin/python3 txt = "Google#Codercto#Taobao#Facebook" # 第二个参数为 1,返回两个参数列表x = txt.split("#", 1) print(x)

以上实例输出结果如下:

['Google', 'Codercto#Taobao#Facebook']

Python3 rstrip()方法
Python3 splitlines()方法
51自学网,即我要自学网,自学EXCEL、自学PS、自学CAD、自学C语言、自学css3实例,是一个通过网络自主学习工作技能的自学平台,网友喜欢的软件自学网站。
京ICP备13026421号-1