Last active
July 27, 2016 13:41
-
-
Save moratorium08/5709b002e82d52b93315cdcb4e316eb7 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
| # coding:utf-8 | |
| import datetime | |
| def main(): | |
| while True: | |
| print ">", | |
| raw_input() | |
| if int(datetime.datetime.now().strftime('%H')) > 21: | |
| print "うん、そうだね" | |
| else: | |
| print "がんばって" | |
| if __name__=='__main__': | |
| main() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment