PHP
·
发表于 5年以前
·
阅读量:8283
在不使用循环的情况下,要打印一个字符串 n 次是非常容易的,如下所示。
def repeat(string, n):
return (string * n)
repeat('python', 3) # pythonpythonpython