python字符串处理函数
字符串处理与特殊函数
用引号括起来的字符集合称之为字符串,引号可以使一对单引号、双引号、三引号(单/双)。
创建字符串很简单:
var1 = 'hello world!'
var2 = "python"
var3 = '''hello world'''
var4 = """python"""
如果需要输出 hello "dear"
怎么办?
print ("hello \"dear\" ")
print ('''hello "dear" ''')
同时'''
支持内容换行
python 访问字符串中的值
python不支持单字符类型,单字符在python也是作为一个字符串处理的。
python访问子字符串,可以使用方括号来截取字符串:
var1 = 'hello world'
var2 = "python programming"
print ("var1[0]:",var1[0])
print ("var2[1:5]:",var2[1:5])
以上实例执行结果为:
var1[0]: h
var2[1:5]: ytho
python字符串更新
本质是另外开辟空间创建了一个新的字符串
var1='hello world'
print("updated mystr:",var1[:6] + 'python')
以上实例执行结果为:
updated mystr: hello python
python字符串运算符
以下实例部分a
为字符串'hello'
,b
为字符串'python'
操作符 | 描述 | 实例 |
---|---|---|
+ | 字符串连接 |
a+b 输出为:hellopython
|
* | 重复输出字符串 |
a*2 输出为:hellohello
|
[] | 通过索引获取字符 |
a[1] 输出结果为:e
|
[:] | 截取字符串中的一部分 |
a[1:4] 输出结果为:ell
|
in | 成员运算符 | 如果字符串中包含给定的字符返回true
|
not in | 成员运算符 | 如果字符串中不包含给定的字符返回 true
|
r/R | 原始字符串 | 字符串直接按照字面的意思来使用,没有转义或不能打印的字符 |
原始字符串在字符串的第一个引号前加上字母“r”(可以大小写)以外,与普通字符串有着几乎完全相同的语法。
python字符串格式化
在python
中,字符串格式化使用与C中sprintf
函数一样的语法。
print("my name is %s and weight is %d kg" % ("john",2) )
以上实例执行结果为:
my name is john and weight is 2 kg
字符串中各种函数
find(str,start,end)函数 查找字符串;start 和 end可以省略,找不到时返回 -1
mystr="hello world"
mystr.find('hello',0,len(mystr))`
index(str,start,end)函数 定位索引;start 和 end可以省略,找不到时抛异常
count(str,start,end)函数 返回str在start和end之间 在mystr里面出现的次数
decode(encoding,errors) 以encoding指定的编码格式解码mystr
mystr.decode(encoding='UTF-8',errors='strict')
encode(encoding,errors) 以encoding指定的编码格式编码mystr
mystr.decode(encoding='UTF-8',errors='strict')
replace(str1,str2,count) 把mystr中的str1替换成str2,如果count指定,则替换不超过count次
mystr.replace(str,str2,mystr.count(str1))
**split(str,maxsplit) ** 以str为分隔符切片,如果maxsplit有指定值,则仅分割maxsplit个子字符串
capitalize() 把字符串的第一个字符大写
可以使用mystr. 然后回车 查看该字符串的处理方法有哪些
可以使用 help(方法名)查看方法的使用方式