Created
August 17, 2017 12:08
-
-
Save nozma/9311bd0da82c9116a20c43ae3e9800b9 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