一、字符串

1、字符串对象:被引号引住的内容叫做字符串

2、字符串对象的常用方法

capitalize:使字符串首字母大写,符合文章开头

python字符串按照对象存储 python字符串对象方法_拼接字符串


count:统计字符串中某个字符或者字符串出现的次数

python字符串按照对象存储 python字符串对象方法_首字母_02


encode:通过参数指定编码将字符串转换为字节

python字符串按照对象存储 python字符串对象方法_python_03


decode:通过参数指定编码将字节转换为字符串

python字符串按照对象存储 python字符串对象方法_首字母_04


endswith:查看字符串以什么结束

python字符串按照对象存储 python字符串对象方法_拼接字符串_05


startswith:查看字符串以什么开始

python字符串按照对象存储 python字符串对象方法_python字符串按照对象存储_06


find:查询字符或字符串在该字符串中的索引位置,如果不存在,则会返回-1,不会报错

python字符串按照对象存储 python字符串对象方法_python字符串按照对象存储_07


index:查询字符或字符串在该字符串中的索引位置

python字符串按照对象存储 python字符串对象方法_python_08


rfind:查找最后一个

python字符串按照对象存储 python字符串对象方法_首字母_09


rindex:查找最后一个

python字符串按照对象存储 python字符串对象方法_字符串_10


format:格式化字符串

拼接字符串:

(1)print(“hello %”%day)

python字符串按照对象存储 python字符串对象方法_python字符串按照对象存储_11


(2)print(“hello”+day)

python字符串按照对象存储 python字符串对象方法_python_12


(3)print(“hello {}”.format(day))

python字符串按照对象存储 python字符串对象方法_拼接字符串_13


isalnum:判断字符串只能由数字和字母组成

python字符串按照对象存储 python字符串对象方法_字符串_14


isalpha:判断字符串是否只有字母

python字符串按照对象存储 python字符串对象方法_拼接字符串_15


islower:判断字符串是否全为小写

python字符串按照对象存储 python字符串对象方法_首字母_16


isupper:判断字符串是否全为大写

python字符串按照对象存储 python字符串对象方法_python字符串按照对象存储_17


istitle:判断每个单词的首字母是否为大写(英语文章标题)

python字符串按照对象存储 python字符串对象方法_拼接字符串_18


isspace:判断是不是空格

python字符串按照对象存储 python字符串对象方法_首字母_19


isdight:判断字符串是否只有数字

python字符串按照对象存储 python字符串对象方法_首字母_20


isdecimal:判断字符串是否只有数字

python字符串按照对象存储 python字符串对象方法_拼接字符串_21


join:按照特定的符号拼接字符串

例:“*”.join(“”)

python字符串按照对象存储 python字符串对象方法_拼接字符串_22


lower:将字符串中的字母都转换为小写

python字符串按照对象存储 python字符串对象方法_拼接字符串_23


upper:将字符串中的字母都转换为大写

python字符串按照对象存储 python字符串对象方法_python_24


strip:去除两侧空格

python字符串按照对象存储 python字符串对象方法_字符串_25


rstrip:清楚右侧空格

python字符串按照对象存储 python字符串对象方法_字符串_26


lstrip:清楚左侧空格

python字符串按照对象存储 python字符串对象方法_python字符串按照对象存储_27


title:将字符串转换为符合我们的标题

python字符串按照对象存储 python字符串对象方法_字符串_28


ljust:使字符串左对齐,必须指定长度

python字符串按照对象存储 python字符串对象方法_拼接字符串_29


rjust:使字符串右对齐,必须指定长度

python字符串按照对象存储 python字符串对象方法_python字符串按照对象存储_30


center:使字符串居中,默认以空格填充,可以由用户自己执行填充的字符串填充,如:

python字符串按照对象存储 python字符串对象方法_python_31


split:按照特定的符号分割字符串

python字符串按照对象存储 python字符串对象方法_字符串_32


二、切片

python为大家提供了一种用于截取部分内容的方案,叫做切片

s=“today is sunday”

s[num1:]#表示从num1位置开始截取内容

【num1:num2】#从num1开始截取,截取到num2前一位

【num1:num2:num3】#第三个参数表示步长,默认为1

python字符串按照对象存储 python字符串对象方法_首字母_33


将字符串翻转:【::-1】

python字符串按照对象存储 python字符串对象方法_拼接字符串_34


注:所有的有序序列都是支持切片的