将一个字符串重复N次,并且中间加上指定的分隔符 例:repeat("", "x", 3) = "xxx";//空字符串重复3次,用 x 隔开
时间: 2023-12-24 11:47:44 浏览: 206
代码如下:
```python
def repeat(s, sep, n):
"""
将字符串 s 重复 n 次,并且在每两个字符串之间加上分隔符 sep
"""
return sep.join([s]*n)
# 测试
print(repeat("", "x", 3)) # 输出:xxx
print(repeat("hello", "-", 5)) # 输出:hello-hello-hello-hello-hello
print(repeat("python", "|", 2)) # 输出:python|python
```
阅读全文