Created
February 22, 2017 01:30
-
-
Save chuck0523/ca87e0960b731deba07e1ff0c7d5782e 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
## 入力は文字列として扱われる。 | |
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