Last active
August 16, 2017 14:27
-
-
Save nozma/6069d0d0ca437b984d1c465eadf02876 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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