Skip to content

Instantly share code, notes, and snippets.

@nozma
Last active August 16, 2017 14:27
Show Gist options
  • Select an option

  • Save nozma/6069d0d0ca437b984d1c465eadf02876 to your computer and use it in GitHub Desktop.

Select an option

Save nozma/6069d0d0ca437b984d1c465eadf02876 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