18th Day in Google
#!/usr/bin/python
import random
works=['Coding', 'BBS', 'Blog']
random.seed()
for time in xrange(8 * 60 + 30, 22 * 60 + 30, 10):
print "%d:%d - %s" % (time / 60, time % 60,
works[random.randint(0, 2)])
print "Go back to HOTEL"
No comments:
Post a Comment