Created
February 22, 2017 01:29
-
-
Save chuck0523/d81cb35385f34d5b0e127a5b4dfc85ff 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
# 単純入力 | |
## Python3では、raw_inputは廃止された。inputを用いる。 | |
S1 = input() | |
# 単純出力 | |
print("aaa") # aaa | |
## Python2では print "aaa"だったが、3ではカッコが必要。 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment