登录
首页 >  文章 >  python教程

Python Day-String 使用循环函数逻辑

来源:dev.to

时间:2024-12-14 08:27:48 375浏览 收藏

IT行业相对于一般传统行业,发展更新速度更快,一旦停止了学习,很快就会被行业所淘汰。所以我们需要踏踏实实的不断学习,精进自己的技术,尤其是初学者。今天golang学习网给大家整理了《Python Day-String 使用循环函数逻辑》,聊聊,我们一起来看看吧!

Python Day-String 使用循环函数逻辑

1)replace(): 返回指定值替换为指定值的字符串。

txt = "i like bananas"
already = "bananas"
new = "apples"

l = len(already) # l = 7
start = 0 
end = l 
while end<=len(txt):
    if txt[start:end] == 'bananas':
        print(txt[:start],new)
    start+=1
    end+=1

输出:

i like  apples

--> 在python中,一切都是对象。
--> 每个不同的对象有不同的内存空间。
--> 字符串是不可变的:
--> 不可变:不可更改 - மாறாது。
--> 如果我们尝试编辑现有字符串,它不会改变。相反,将创建一个新的内存来存储新值。
-->相同的字符串可以引用相同的内存。

示例:

country1 = 'india'
country2 = 'india'
country3 = 'india'
country4 = 'india'
print(id(country1))
print(id(country2))
print(id(country3))
print(id(country4))
country1 = "singapore"
print(id(country1))

输出:

137348796892288
137348796892288
137348796892288
137348796892288
137348795520944

因此对于最后一个打印语句,已经创建了新的内存,并且字符串无法更改。

2)rfind() 和 rindex() 之间的区别:
在字符串中搜索指定值并返回找到该值的最后位置。
示例:1

txt = "mi casa, su casa."

x = txt.rfind("basa")
print(x) 
x = txt.rindex("basa")
print(x)

输出:

-1
valueerror: substring not found

-->在 rfind() 中如果未找到字符串则返回 -1。
-->in rindex() 如果找不到字符串则返回 valueerror。

示例:2(逻辑)

txt = "python is my favourite language"
key = 'my'
l = len(key)
start = len(txt) - l
end = len(txt)

while start >= 0:
    if txt[start:end] == key:
        print(start)
        break
    start -= 1
    end -= 1
else:
    print('-1 or valueerror')

输出:

10

3) split(): 在指定分隔符处分割字符串,并返回一个列表。

txt = "today is wednesday"
word = ''
start = 0
i = 0 
while i<len(txt):
    if txt[i]==' ':
        print(txt[start:i])
        start = i+1
    elif i == len(txt)-1:
        print(txt[start:i+1])
    i+=1

输出:

Today
is
Wednesday

文中关于的知识介绍,希望对你的学习有所帮助!若是受益匪浅,那就动动鼠标收藏这篇《Python Day-String 使用循环函数逻辑》文章吧,也可关注golang学习网公众号了解相关技术文章。

声明:本文转载于:dev.to 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>