python3字符串函数
Python 3中常见的字符串函数有很多,以下是其中一些常用的函数:
1. `len(str)`:返回字符串的长度。
```python
s = "Hello, World!"
print(len(s)) # 输出:13
```
2. `str.upper(`:将字符串转换为大写。
```python
s = "hello, world!"
print(s.upper() # 输出:HELLO, WORLD!
```
3. `str.lower(`:将字符串转换为小写。
```python
s="HELLO,WORLD!"
print(s.lower() # 输出:hello, world!
```
4. `str.capitalize(`:将字符串的第一个字符转换为大写,其他字符转换为小写。
```python
s = "hello, world!"
print(s.capitalize() # 输出:Hello, world!
```
5. `str.title(`:将字符串中所有单词的首字母转换为大写。
```python
s = "hello, world!"
print(s.title() # 输出:Hello, World!
```
6. `unt(substring)`:返回子字符串在字符串中出现的次数。
```python
s = "hello, hello!"
unt("hello")) # 输出:2
```
7. `place(old, new)`:将字符串中的所有旧字符串替换为新字符串。
```python
s = "hello, world!"
place("world", "Python")) # 输出:hello, Python!
```
8. `str.split(separator)`:将字符串分割为字符串列表,使用指定的分隔符。
```python
s = "hello, world!"
print(s.split(",")) # 输出:['hello', ' world!']
```
9. `str.strip(chars)`:移除字符串开头和结尾的指定字符。
```python
s = " hello, world! "
print(s.strip() # 输出:hello, world!
```字符串长度函数是什么
以上只是一些常见的字符串函数,Python 3中还有更多的字符串函数可以使用,根据实际需要选择合适的函数来处理字符串。
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论