配列の例題なのですが

str = "Hello"
str2 = ""
for n in str:
str2 = str2 + (n * 2) + '~'
print(str2)

これのstr2 = ""は何をする為に必要なんでしょうか?