博客是我工作的好帮手,遇到困难就来博客找资料
发布时间:2015-02-14 15:56:44
一.time模块time模块提供各种操作时间的函数 一般有两种表示时间的方式:第一种是.........【阅读全文】
发布时间:2015-02-14 15:26:00
Python提供了多个内置模块用于操作日期时间,像calendar,time,datetime。time模块我在之前的文章已经有所介绍,它提供 的接口与C标准库time.h基本一致。相比于time模块,datetime模块的接口则更直观、更容易调用。今天就来讲讲datetime模块。 datetime模块定义了两个常量:datetime.MINYEAR.........【阅读全文】
发布时间:2015-02-09 17:46:08
1 from formatter import AbstractFormatter, NullWriter 2 from htmllib import HTMLParser 3 4 def _(str, in_encoder="gbk", out_encoder="utf8"): 5 return unicode(str, in_encoder).encode(out_encoder) 6 7 8 class myWriter(NullWriter): 9 def __init__(s.........【阅读全文】