python中string函数的用法
时间: 2023-04-29 18:04:52 浏览: 103
Python将string转换到float的实例方法
5星 · 资源好评率100%
Python中的字符串函数有很多,常用的有:
- `len(string)`: 返回字符串长度
- `str.upper()`: 将字符串转换为大写
- `str.lower()`: 将字符串转换为小写
- `str.capitalize()`: 将字符串的第一个字符转换为大写,其余字符转换为小写
- `str.count(substring)`: 返回字符串中子串出现的次数
- `str.find(substring)`: 返回字符串中子串第一次出现的位置,若未找到则返回-1
- `str.replace(old, new)`: 将字符串中的所有old子串替换为new子串
- `str.split(delimiter)`: 使用delimiter作为分隔符将字符串分割为多个字符串组成的列表
除此之外还有很多其他的字符串函数,可以在Python文档中进一步了解。
阅读全文