对宇符串 Python is a greate programming language.I like it!操作。1查找字符串is出现的位置。 2将is替换成IS 3将字符串用空格分隔成列表, 4统计字母a的出现个数
时间: 2024-03-09 14:45:45 浏览: 103
好的,我会根据你的要求进行操作。以下是我的回答:
1. 要查找字符串"is"在原字符串中出现的位置,可以使用Python内置函数find(),代码如下:
```
s = "Python is a great programming language. I like it!"
print(s.find("is"))
```
运行结果为:
```
7
```
说明"is"在原字符串中的位置是第8个字符(从0开始计数)。
2. 要将字符串中的"is"替换成"IS",可以使用Python内置函数replace(),代码如下:
```
s = "Python is a great programming language. I like it!"
s = s.replace("is", "IS")
print(s)
```
运行结果为:
```
Python IS a great programming language. I like it!
```
3. 要将字符串用空格分隔成列表,可以使用Python内置函数split(),代码如下:
```
s = "Python is a great programming language. I like it!"
lst = s.split()
print(lst)
```
运行结果为:
```
['Python', 'is', 'a', 'great', 'programming', 'language.', 'I', 'like', 'it!']
```
4. 要统计字母"a"在字符串中出现的个数,可以使用Python内置函数count(),代码如下:
```
s = "Python is a great programming language. I like it!"
count_a = s.count("a")
print(count_a)
```
运行结果为:
```
5
```
说明字母"a"在原字符串中共出现了5次。
阅读全文