python语言输入一个字符串和一个字符,计算字符在字符串中出现的次数。
时间: 2023-04-11 13:02:04 浏览: 243
可以使用 count() 方法来计算字符在字符串中出现的次数,示例代码如下:
```python
string = input("请输入一个字符串:")
char = input("请输入一个字符:")
count = string.count(char)
print("字符 %s 在字符串 %s 中出现了 %d 次。" % (char, string, count))
```
输入示例:
```
请输入一个字符串:hello world
请输入一个字符:o
```
输出示例:
```
字符 o 在字符串 hello world 中出现了 2 次。
```
阅读全文