1. 字符串长度: len()
len()
函数用来返回字符串的长度。
s = "Hello World" print(len(s)) # 输出: 11
2. 字符串拼接: +
在Python中,可以使用+
运算符来拼接字符串。
s1 = "Hello" s2 = "World" s = s1 + " " + s2 print(s) # 输出: "Hello World"
3. 字符串分割: split()
split()
函数用来根据指定的分隔符切分字符串。
s = "Hello World" words = s.split(" ") print(words) # 输出: ['Hello', 'World']
4. 字符串替换: replace()
replace()
函数用来将字符串中的指定子串替换为另一子串。
s = "Hello World" s_new = s.replace("World", "Python") print(s_new) # 输出: "Hello Python"
5. 字符串查找: find()
find()
函数用来查找子串在字符串中首次出现的位置,若找不到则返回-1。
s = "Hello World" pos = s.find("World") print(pos) # 输出: 6
6. 字符串大小写转换: lower(), upper()
lower()
和upper()
函数用来将字符串转换为全部小写或全部大写。
s = "Hello World" print(s.lower()) # 输出: "hello world" print(s.upper()) # 输出: "HELLO WORLD"
7. 去除字符串首尾空格: strip()
strip()
函数用来去除字符串首尾的空格。
s = " Hello World " s = s.strip() print(s) # 输出: "Hello World"
以上就是Python字符串操作中最常用的一些API。掌握并熟练运用这些函数,将有助于你提高编程效率和代码可读性。