string类型的常用方法

str1 = '''Whatever pleasure Myra may have shown at the 
commencement of this speech gave way to a mutinous frown 
as its later purport penetrated her mind. Had she not had his 
explicit promise that she should not be directly involved in 
the handling of these illicit 
'''
# 全文:查找is在字符串当中出现的次数
# 第一行:查找Myra第一个出现的位置
# 第二行:将第二行分割成'commencement of this speech gave ',
# 'way',' to a mutinous frown '
# 第三行:将mind替换成branie,将p和o 替换成a和z,指定translates方法
# 第四行:将promise提取出来,将第四行反向打印输出
# 四五行:判断字符串是否都是字母组成,判断每个单词首字母都是大写
print(str1.count('is'))
print(str1.find('Myra'))
a=str1.splitlines()
a1=a[1]
print(a1.partition('way'))
a2=a[2]
a3=a2.replace('mind','branie')
print(a3)
intab='pp'
outtab='az'
b=str.maketrans(intab,outtab)
print(a3.translate(b))
a4=a[3]
print(a4[::-1])
print(a4[9:16])
print(a4.isalpha())
print(a[4].isalpha())
print(a4.istitle())
print(a[4].istitle())
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值