# 다른 문자열일 경우 t = [] t.append('hello') t.append('world') s1 = ''.join(t) # 같은 문자열일 경우 s2 = 'hello' * 10000