Skip to content

Instantly share code, notes, and snippets.

@chuck0523
Created February 22, 2017 01:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chuck0523/ca87e0960b731deba07e1ff0c7d5782e to your computer and use it in GitHub Desktop.
Save chuck0523/ca87e0960b731deba07e1ff0c7d5782e to your computer and use it in GitHub Desktop.
## 入力は文字列として扱われる。
print(type(input())) # str
## 数値へと型変換。
print(type(int(input()))) # int
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment