rep实现代码
由于没有具体的问题和要求,这里提供一个简单的rep实现代码,可以根据需要进行修改和优化:
def rep(s, n):
"""
将字符串s重复n次并返回
"""
if n == 0:
return ""
elif n == 1:
return s
else:
return s + rep(s, n-1)
使用示例:
print(rep("hello", 3)) # 输出 "hellohellohello"
print(rep("world", 0)) # 输出 ""
print(rep("", 5)) # 输出 ""
原文地址: https://www.cveoy.top/t/topic/d43I 著作权归作者所有。请勿转载和采集!