import string
#数字
string.digits
#字母
string.letters
#小写字母
string.lowercase
#大写字母
string.uppercase
#可打印字符
string.printable
#标点
string.punctuation
title = "Zk | Zjx | Zps | Jqj"
title.find("Zk")
title.find("Zps")
title.find("Cc")
#还可以接受起始点和结束点参数
#注意:跟分片一样,搜索范围包括起始点但是不包括结束点
title.find("Zk", 3)
title.find("Zps", 3 , 15)
dirs = '', 'usr', 'bin', 'env'
'/'.join(dirs)
num = list("12345")
num
'+'.join(num)
"HELLO".lower()
"1111 2222 3333".replace("2222", "bbbb")
"1+2+3+4+5".split('+')
"Using the default".split()
" Mike ".strip()
"===***Hello world***---".strip('-=*')
"sfdshfhdsfh232323232sdsdsdsdsd232323fjdsfjdsjfo".strip(string.letters)
from string import maketrans
table = maketrans("cs", "kz")
table[97:123]
maketrans('', '')[97:123]
"abccccccdefg opqrssssssstuvwxyz".translate(table)
#可以加入第二个参数,把指定字符都删除掉
"abccccccdefg opqrssssssstuvwxyz".translate(table, ' ')