Python_base_字符串
Posted 小屁屁屁屁妞
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python_base_字符串相关的知识,希望对你有一定的参考价值。
一、字符串查找和替换
hello_str="hello word"
#判断是否以指定字符串开始
print(hello_str.startswith("hello")) True
#判断是否以指定字符串结束
print(hello_str.endswith("word")) True
#查找指定字符串
print(hello_str.find("llo")) 2
print(hello_str.find("lloc")) -1 #index指定的字符串会报错,find指定的字符串不存在会返回-1
#替换字符串
#replace方法执行完成后,会返回一个新的字符串,不会修改原有字符串的内容
print(hello_str.replace("hello","python")) python word
print(hello_str) hello word
二、去除空白字符
pome=[" 慈母手中线",
"游子身上衣",
"临行密密缝",
"意恐迟迟归"]
for pome_str in pome:
print("|%s|" %pome_str.strip().center(10))
#先使用strip方法去除字符串中的空白字符
#再用center方法居中显示文本
输出结果:
| 慈母手中线 |
| 游子身上衣 |
| 临行密密缝 |
| 意恐迟迟归 |
以上是关于Python_base_字符串的主要内容,如果未能解决你的问题,请参考以下文章