def solution(str1, str2):
answer = ''
for i in range(0,len(str2)):
answer = answer+str1[i]+str2[i]
return answer
index와 원소를 동시에 접근하면서 loop를 동시에 돌린다.
for entry in eenumerate(['A','B','C']):
print(entry)
(0, 'A')
(1, 'B')
(2, 'C')
단체 티셔츠를 주문하기