問題文
問題の概要
問題文の指示通り、2つの文の冒頭から1文字ずつ取り出します。
text0 = 'パトカー' text1 = 'タクシー' ans = '' for i in range(len(text0)): ans += text0[i] ans += text1[i] print(ans)
問題文の指示通り、2つの文の冒頭から1文字ずつ取り出します。
text0 = 'パトカー' text1 = 'タクシー' ans = '' for i in range(len(text0)): ans += text0[i] ans += text1[i] print(ans)