Skip to content

Instantly share code, notes, and snippets.

@moratorium08
Last active July 27, 2016 13:41
Show Gist options
  • Select an option

  • Save moratorium08/5709b002e82d52b93315cdcb4e316eb7 to your computer and use it in GitHub Desktop.

Select an option

Save moratorium08/5709b002e82d52b93315cdcb4e316eb7 to your computer and use it in GitHub Desktop.
# 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