Python常用方法记录——replace()、split()

来源:互联网 发布:透明桌面日历软件 编辑:程序博客网 时间:2024/06/05 16:04

1.Python replace()方法

语法:
str.replace(old, new[, max])

作用:
Python replace() 方法把字符串中的 old(旧字符串) 替换成 new(新字符串)。
如果指定第三个参数max,则替换不超过 max 次;如果不指定max,则将第一个参数(old)全部替换为第二个参数(new)。

实例(Python3):
input:
# _*_ coding:utf-8 _*_str = "this is string example....wow!!! this is really string";print (str.replace("is", "was"))print (str.replace("is", "was", 3))

output:

thwas was string example....wow!!! thwas was really stringthwas was string example....wow!!! thwas is really string


2.Python split()方法

语法:
str.split(str="", num=string.count(str))

作用:
Python split()通过指定分隔符(str)对字符串进行切片,返回分割后的字符串列表。
*分隔符(str):默认为所有的空字符,包括空格、换行(\n)、制表符(\t)等。
*分割次数(num):如果参数num 有指定值,则仅分隔 num 个子字符串(即num为可选参数)


实例:
input:
a = 'name:haha,age:20|name:python,age:30|name:fef,age:55'

print a.split('|')

output:
['name:haha,age:20', 'name:python,age:30', 'name:fef,age:55']


0 0
原创粉丝点击