编写fun函数,将字符串s中下标为偶数的删掉
时间: 2024-03-11 12:46:45 浏览: 105
C语言程序设计-编写函数fun(str,i,n),从字符串str中删除第i个字符开始的连续n个字符
5星 · 资源好评率100%
可以使用以下 Python 代码实现:
```python
def fun(s: str) -> str:
new_str = ""
for i in range(len(s)):
if i % 2 == 0:
continue
new_str += s[i]
return new_str
```
这个函数的实现方式是遍历字符串中所有下标为偶数的字符,并将下标为偶数的字符跳过,将下标为奇数的字符加入到一个新的字符串中,最后返回这个新的字符串。
阅读全文