python教程字符串函数python字符串常用方法详解
1. capitalize(:将字符串的首字母大写,其他字母小写。
```python
string = "hello world"
print(string.capitalize() # 输出:Hello world
```
2. upper(:将字符串中的所有字母转换为大写字母。
```python
string = "hello world"
print(string.upper() # 输出:HELLO WORLD
```
3. lower(:将字符串中的所有字母转换为小写字母。
```python
string = "HELLO WORLD"
print(string.lower() # 输出:hello world
```
4. swapcase(:将字符串中的大写字母转换为小写字母,小写字母转换为大写字母。
```python
string = "Hello World"
print(string.swapcase() # 输出:hELLO wORLD
```
5. strip(:去除字符串两端的空格。
```python
string = " hello world "
print(string.strip() # 输出:hello world
```
6. lstrip(:去除字符串左侧的空格。
```python
string = " hello world "
print(string.lstrip() # 输出:hello world
```
7. rstrip(:去除字符串右侧的空格。
```python
string = " hello world "
print(string.rstrip() # 输出: hello world
```
8. count(:统计字符串中一些子串出现的次数。
```python
string = "hello world"
unt("l")) # 输出:3
```
9. find(:查子串在字符串中第一次出现的索引位置。
```python
string = "hello world"
print(string.find("world")) # 输出:6
```
10. replace(:替换字符串中的子串。
```python
string = "hello world"
place("world", "python")) # 输出:hello python
```
11. split(:将字符串按照指定的分隔符分割成一个列表。
```python
string = "hello,world,python"
print(string.split(",")) # 输出:['hello', 'world', 'python']
```
12. join(:将一个列表中的字符串按照指定的连接符合并成一个字符串。
```python
list = ['hello', 'world', 'python']
print(",".join(list)) # 输出:hello,world,python
```
13. isalpha(:判断字符串是否只包含字母。
```python
string = "hello"
print(string.isalpha() # 输出:True
```
14. isdigit(:判断字符串是否只包含数字。
```python
string = "123"
print(string.isdigit() # 输出:True
```
15. startswith(:判断字符串是否以指定的子串开头。
```python
string = "hello world"
print(string.startswith("hello")) # 输出:True
```
16. endswith(:判断字符串是否以指定的子串结尾。
```python
string = "hello world"
dswith("world")) # 输出:True
```
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论