请演示这七个python字符串方法:1) str()函数 2) find()方法 3) lower()方法 4) split()方法 5) strip ()方法 6) lstrip ()方法 7) rstrip ()方法
时间: 2023-12-04 18:05:59 浏览: 71
python中根据字符串调用函数的实现方法
当然,我很乐意演示这七个 Python 字符串方法。
1) str() 函数:将指定的对象转换为字符串。
```python
num = 123
print(str(num))
# 输出:'123'
```
2) find() 方法:在字符串中查找指定的子字符串,并返回它的位置。如果没有找到,返回 -1。
```python
text = "Hello, World!"
print(text.find("World"))
# 输出:7
```
3) lower() 方法:将字符串中的所有字母转换为小写字母。
```python
text = "Hello, World!"
print(text.lower())
# 输出:'hello, world!'
```
4) split() 方法:将字符串分割成子字符串列表,使用指定的分隔符。
```python
text = "apple, banana, cherry"
print(text.split(", "))
# 输出:['apple', 'banana', 'cherry']
```
5) strip() 方法:从字符串的开头和结尾删除空格。
```python
text = " Hello, World! "
print(text.strip())
# 输出:'Hello, World!'
```
6) lstrip() 方法:从字符串的开头删除空格。
```python
text = " Hello, World! "
print(text.lstrip())
# 输出:'Hello, World! '
```
7) rstrip() 方法:从字符串的结尾删除空格。
```python
text = " Hello, World! "
print(text.rstrip())
# 输出:' Hello, World!'
```
阅读全文