编写函数,将字符串中小写字母后添加星号
时间: 2023-04-25 12:03:54 浏览: 245
C#编程输入一串字符创输出结果用星号隔开
以下是Python代码实现:
```python
def add_star(s):
result = ''
for c in s:
if c.islower():
result += c + '*'
else:
result += c
return result
```
这个函数接受一个字符串作为参数,然后遍历字符串中的每个字符。如果字符是小写字母,就在它后面添加一个星号;否则,直接将字符添加到结果字符串中。最后返回结果字符串。
例如,如果调用`add_star('Hello, World!')`,将返回`Hello, W*o*r*l*d!`。
阅读全文