30秒学会 Python 片段 · 2023年5月2日

30秒学会 Python 片段 – Repeat string

Generates a string with the given string value repeated n number of times.

  • Repeat the string n times, using the * operator.

代码实现

def n_times_string(s, n):
  return (s * n)

使用样例

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

翻译自:https://www.30secondsofcode.org/python/s/n-times-string