代码
提交代码
def hello_world(n, string): for i in range(n): print(string) hello_world(n, 'HELLO WORLD')
运行结果