重复字符串

生成一个重复n次的给定字符串值的字符串。

  • 使用*运算符将字符串重复n次。
def n_times_string(s, n):
  return (s * n)

n_times_string('py', 4) #'pypypypy'