Skip to content

Instantly share code, notes, and snippets.

@yoneda
Created February 10, 2018 16:28
Show Gist options
  • Save yoneda/d08018b19a926cb386e40d3ac866ef34 to your computer and use it in GitHub Desktop.
Save yoneda/d08018b19a926cb386e40d3ac866ef34 to your computer and use it in GitHub Desktop.
python print test
# coding: utf-8
num = 11
print("num is ... {}".format(num))
name = "tarou"
print("name is ... {}".format(name))
fruits = {"apple":100,"orange":400}
print("fruits is ... {}".format(fruits))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment