判断字符串"sfadaTRashah"中宇符”a"出现了几次,井输出。 思路: 利用for-in循环依次取出字符串内的字符 与a“进行比较,若不相等,则用continue跳出本次循环
时间: 2023-05-31 22:04:51 浏览: 100
中宇联面试题.doc
,若相等,则计数器加1。最后输出计数器的值即可。
代码如下:
```python
s = "sfadaTRashah"
count = 0
for c in s:
if c != "a":
continue
count += 1
print(count)
```
输出:
```
4
```
阅读全文