Python字符串

定义:

string[起始:结束:步长]

应用

(1)、查索引:

str.find(值) #从左向右
str.rfind(值) #从右向左


image.png

str.index(值)


image.png

(2)、次数:
str.count()
image.png

(3)、替代:
str.replace(/) #原有字符串不会改变


image.png

(4)、分割:

str.split("")


image.png

(5)、把字符串第一个字符大写:
str.capitalize()


image.png

(6)、把字符串的每个单词首字母大写:
str.title()
image.png

(7)、检查字符串是否以/开头,是则返回True,否则返回False:
str.startwith()


image.png

(8)、检查字符串是否是以/结尾的。
str.endwith()

(9)、把字符串中所有大写字符转换为小写字符:
str.lower()
image.png

(10)、把字符串中的大写转化为小写:
str.upper()
image.png

(11)、返回一个原字符串左对齐,并使用空格填充至长度 width 的新字符串:
str.ljust()


image.png

(12)、返回一个原字符串右对齐,并使用空格填充至长度 width 的新字符串:
str.rjust()
image.png

(13)、返回一个原字符串居中,并使用空格填充至长度 width 的新字符串:
str.center()
image.png

(14)、删除 mystr 左边的空白字符:
str.lstrip()
image.png

(15)、删除 mystr 字符串末尾的空白字符:
str.strip()
image.png

(16)、把mystr以str分割成三部分,str前,str和str后:
str.partition()
image.png

(17)、类似于 partition()函数,不过是从右边开始:
str.rapartition()
image.png

(18)、按照行分隔,返回一个包含各行作为元素的列表:
str.splitlines()
image.png

(19)、如果 mystr 所有字符都是字母 则返回 True,否则返回 False:

str.isalpha()


image.png

(20)、如果 mystr 只包含数字则返回 True 否则返回 False.:
str.isdigit()
image.png

(21)、如果 mystr 所有字符都是字母或数字则返回 True,否则返回 False:
str.isalnum()
image.png

(22)、如果 mystr 中只包含空格,则返回 True,否则返回 False:
str.isspace()
image.png

(23)、mystr 中每个字符后面插入str,构造出一个新的字符串:
str.join()
image.png

你可能感兴趣的:(Python字符串)