摘要: import time now = time.localtime(time.time()) print time.asctime(now) print time.strftime("%y %m %d %H:%M", now) print "*****a,b,c,d********" print time.strftime("%a", now) print time.... 阅读全文
posted @ 2014-09-26 10:13 小辉卖疯 阅读(337) 评论(0) 推荐(0) 编辑
摘要: import sys import string class Redirect: def _ _init_ _(self, stdout): self.stdout = stdout def write(self, s): self.stdout.write(string.lower(s)) # redirect standard outpu... 阅读全文
posted @ 2014-09-26 09:45 小辉卖疯 阅读(200) 评论(0) 推荐(0) 编辑