本文主要是介绍python 字符串的定义和操作方法,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
str=' why is money '
# 获取字符串对应索引的值
print(f"{str[0]}")
print(f"{str[-1]}")
#获取对应字符元素的数量
num=str.count('y')
print(f"字符y的数量:{num}")
#对应元素所在的索引
index=str.index("is")
print(f"{index}")
#字符的长度
length=len(str)
print(f"{length}")
#去掉首位空格
strip=str.strip()
print(f"去掉首尾空格:{strip}")
# 去掉首尾包含wh的字符
strip2=strip.strip('wh')
print(f"去掉wh:{strip2}")
#字符替换
restr=strip.replace(" ","|")
print(f"{strip}替换后{restr}")
#字符截取
new_str=strip.split(" ")
print(f"{strip}截取后的值{new_str},类型为{type(new_str)}")
这篇关于python 字符串的定义和操作方法的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!