Last active
August 16, 2017 14:38
-
-
Save nozma/cd20a356e9adf01e09cdcb451e5532c3 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 | |
| def gen_sentence(x, y, z): | |
| return "{}時の{}は{}".format(x, y, z) | |
| x = 12 | |
| y = '気温' | |
| z = 22.4 | |
| print(gen_sentence(x, y, z)) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment