己知 strSource =‘code that change world’,使用字符串操作函数strip()、lstrip()、rstrip()、split()、count() 实现如下功能: (1) 将strSource 用空格分隔成由字符串组成的列表 (2) 将 strSource 用空格分隔成由字符串组成的列表且字符串的首尾不包含’t’ (3) 将 strSource 首尾的空格去掉 (4) 将strSource 首尾的’c’去掉 (5) 将strSource 左边的空格去掉 (6) 将strSource 左边的 ‘c’去掉 (7) 统计strSource中 ‘code’出现的次数
时间: 2023-05-24 12:07:29 浏览: 44
1. 将strSource 用空格分隔成由字符串组成的列表:
```
lst = strSource.split()
print(lst)
```
输出:['code', 'that', 'change', 'world']
2. 将 strSource 用空格分隔成由字符串组成的列表且字符串的首尾不包含't':
```
lst = [s.strip('t') for s in strSource.split()]
print(lst)
```
输出:['code', 'ha', 'change', 'world']
3. 将 strSource 首尾的空格去掉:
```
strResult = strSource.strip()
print(strResult)
```
输出:'code that change world'
4. 将strSource 首尾的'c'去掉:
```
strResult = strSource.strip('c')
print(strResult)
```
输出:'ode that change world'
5. 将strSource 左边的空格去掉:
```
strResult = strSource.lstrip()
print(strResult)
```
输出:'code that change world'
6. 将strSource 左边的‘c’去掉:
```
strResult = strSource.lstrip('c')
print(strResult)
```
输出:'ode that change world'
7. 统计strSource中 'code'出现的次数:
```
count = strSource.count('code')
print(count)
```
输出:1
阅读全文