メモ
文字列のループ
code:python
n = 5
string = "Hello!"
print(string * n)
code:shell
$ python sandbox.py
Hello!Hello!Hello!Hello!Hello!