Skip to content

Instantly share code, notes, and snippets.

@nozma
Created August 17, 2017 12:08
Show Gist options
  • Select an option

  • Save nozma/9311bd0da82c9116a20c43ae3e9800b9 to your computer and use it in GitHub Desktop.

Select an option

Save nozma/9311bd0da82c9116a20c43ae3e9800b9 to your computer and use it in GitHub Desktop.
# coding: utf-8
s1 = 'パトカー'
s2 = 'タクシー'
s = ''.join(i+j for i, j in zip(s1, s2))
print(s)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment