str.capitalize() # 将字符串的第一个字母变成大写,其他字母变小写。对于 8 位字节编码需要根据本地环境 >>> ‘hello‘.capitalize() ‘Hello‘ >>> ‘hEllo‘.capitalize() ‘Hello‘
string.center(width[, fillchar]) # 返回一个原字符串居中,并使用空格填充至长度 width 的新字符串。默认填充字符为空格 >>> ‘hello‘.center(10,‘0‘) ‘00hello000‘ >>> ‘hello‘.center(10) ‘ hello ‘
string.count(sub, start= 0,end=len(string)) #方法用于统计字符串里某个字符出现的次数。可选参数为在字符串搜索的开始与结束位置 >>> ‘hello world‘.count(‘o‘) 2 >>> ‘hello world‘.count(‘o‘,4,8) 2 >>> ‘hello world‘.count(‘o‘,4,7) 1
时间: 2024-10-22 06:22:23