首页 > 代码库 > 字符串

字符串

#首个字母变大写 "capitalize()"
#比如:
al = "xiao"
ret = al.capitalize()
print(ret)
#结果 ‘Xiao‘

#内容居中 "center()"
#比如:
al = "xiao"
ret = al.center(10,‘*‘)
print:(ret)
#结果 "*****xiao*****"

#子序列的个数 ‘count()‘
#比如:
al = ‘xiao is alph‘ #(1)"看看‘xiao is alph‘里出现几次i"
ret = al.count(i) #(2)"在‘xiao is aloh’前3个字符里‘i‘出现几次"
print(ret) #在所有编程中都是从‘0‘开始算起
#1结果 ‘2‘
#2结果 ‘1‘

#是否以xxx结束 ‘endswith()‘
#比如:
temp = "hello" #看看"e"是不‘hello‘的结尾
print(temp.endswith(‘e‘))
#结果 ‘Falce‘

#寻找子序列的位置如果没找到返回‘-1‘ "find"
#比如:
S = "xiao hello"
print(s.find("a"))
#结果‘2‘

#连接"join"
#比如:
li = ("xiao,chui")
s = "***".join(li)
print(s)

字符串