该代码块不需要循环语句就能打印 N 次字符串。


n = 2; 
s ="Programming"

print(s * n);
# ProgrammingProgramming