Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

Save nozma/cd20a356e9adf01e09cdcb451e5532c3 to your computer and use it in GitHub Desktop.
# 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