赞
踩
在Python编程中,常常需要处理字符串,如拼接、切割、替换等操作。Python提供了大量处理字符串的API,以下将介绍一下最常用的一些。
len()
函数用来返回字符串的长度。
s = "Hello World"
print(len(s)) # 输出: 11
在Python中,可以使用+
运算符来拼接字符串。
s1 = "Hello"
s2 = "World"
s = s1 + " " + s2
print(s) # 输出: "Hello World"
split()
函数用来根据指定的分隔符切分字符串。
s = "Hello World"
words = s.split(" ")
print(words) # 输出: ['Hello', 'World']
replace()
函数用来将字符串中的指定子串替换为另一子串。
s = "Hello World"
s_new = s.replace("World", "Python")
print(s_new) # 输出: "Hello Python"
find()
函数用来查找子串在字符串中首次出现的位置,若找不到则返回-1。
s = "Hello World"
pos = s.find("World")
print(pos) # 输出: 6
lower()
和upper()
函数用来将字符串转换为全部小写或全部大写。
s = "Hello World"
print(s.lower()) # 输出: "hello world"
print(s.upper()) # 输出: "HELLO WORLD"
strip()
函数用来去除字符串首尾的空格。
s = " Hello World "
s = s.strip()
print(s) # 输出: "Hello World"
以上就是Python字符串操作中最常用的一些API。掌握并熟练运用这些函数,将有助于你提高编程效率和代码可读性。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。