Python
기초

Variable
Type

Sequence

연산자
IO

Input

Output

Function
Strings

문자열 연결

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

# 같은 문자열일 경우
s2 = 'hello' * 10000