学习python的第十七天字符串内置

Posted 憨憨科技

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了学习python的第十七天字符串内置相关的知识,希望对你有一定的参考价值。

字符串:

#__author:"hanhankeji"
#date: 2019/12/7

# string 字符串
a = "hello"
print(a) #hello
#可以计算
print(a*2) #hellohello
# 切片去取内容
print(a[2::]) #llo
#in 关键字去判断是不是在容器里面
print("ll" in a) #True 如果内容在里面返回正确值
#格式化 %表示
#字符串的拼接
aa = "123"
bb = "456"
cc = aa + bb
print(cc)#123456
print( "".join([aa,bb]))#123456 用join 拼接

#字符串的内置方法:
st = "hello w	orld{name}"
print(st .count("l"))# 3 数l的个数
print(st .capitalize())#首字母大写 Hello world
print(st .center(50,"*")) #*******************hello world********************居中文本在符号中间
print(st .endswith("ld")) #True 以XX结尾 不对就Falce
print(st .startswith("ld"))  #False 以什么开头 错误Falce 对的就是True
print(st .expandtabs(tabsize=5))  #hello w   orld  	 的空格数量、
print(st .find("o"))#4 查找指定内容出现第一次位置,展示索引值的值01234
print(st .format(name= "hanhankeji")) #赋值

 

以上是关于学习python的第十七天字符串内置的主要内容,如果未能解决你的问题,请参考以下文章

《Python编程从入门到实践》——学习python的第十七天

《Python编程从入门到实践》——学习python的第十七天

《Python编程从入门到实践》——学习python的第十七天

《Python编程从入门到实践》——学习python的第十七天

2018.10.11python学习第十七天

学习python第十七天,文件处理