字符串:系统内置方法
1.不使用系统内置方法操作字符串
>>> str = ‘程序员‘ >>> str1 = str[:1] +‘(加)‘ + str[1:2] + ‘(班)‘ + str[2:] >>> str1 ‘程(加)序(班)员‘
2.内置函数
capitalize() 转换首字母为大写
>>> str = ‘python‘ >>> str.capitalize() ‘Python‘ >>>
casefold() 转换所有字符为小写
>>> str.casefold() ‘python‘ >>>
count(sub[,start[,end]]) 返回子串sub在字符串中出现的次数,start和end指定范围
>>> str = ‘PYTHON‘ >>> str.count(‘O‘) 1
区分大小写
相关推荐
文山羊 2020-10-20
Tristahong 2020-10-14
kkpiece 2020-07-08
银角大王 2020-07-05
shonmark 2020-06-27
fanhuasijin 2020-05-30
kkpiece 2020-05-28
星辰大海的路上 2020-05-01
xiaoxiaoniaoer 2020-04-26
千锋 2019-11-09
PYTandFA 2020-09-15
meltsnow 2020-06-08
shengge0 2020-06-01
hanxia 2020-05-28
sschencn 2020-04-11
waiwaiLILI 2020-03-20
dxbjfu0 2020-03-06
逍遥友 2020-03-03
Morelia 2020-03-03