u++の備忘録

言語処理100本ノック 2020「02. 「パトカー」+「タクシー」=「パタトクカシーー」」

問題文

nlp100.github.io

問題の概要

問題文の指示通り、2つの文の冒頭から1文字ずつ取り出します。

text0 = 'パトカー'
text1 = 'タクシー'
ans = ''

for i in range(len(text0)):
    ans += text0[i]
    ans += text1[i]

print(ans)