str
Posted dongyanyan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了str相关的知识,希望对你有一定的参考价值。
str [起始索引:结束索引+1:步长]
按照索引找元素/按照切片找元素(顾头不顾尾)/倒着取必须加反向步长【-1】/全部提取[:]
s=‘oldBoy‘
#capitalize 首字母大写,其他小写
# s1=s.capitalize()
# print(s1)
s=‘oldBoy‘
s2=s.upper()
s3=s.lower()
print(s2,s3)
登陆应用:
code=‘womR‘.upper()
your_code=input(‘验证码:‘).upper
if your_code==code:
print(‘验证成功‘)
s4=s.swapcase()
print(s4)
#大小写反转
#title 非字母的元素隔开的每个单词首字母大写
s=‘alex wusir*oldboy3taibai‘
s5=s.title()
print(s5)
s=‘oldboy‘
s6=s.center(30,‘#‘)
print(s6)
#center 剧中 ,长度自己设定,默认填充物NONE
#startswith endswith
s=‘oldboy‘
# s7=s.startswith(‘oldboy‘)
s7=s.startswith(‘b‘,3,5)
print(s7)
以上是关于str的主要内容,如果未能解决你的问题,请参考以下文章