
python
iteye_11019
这个作者很懒,什么都没留下…
展开
-
python 时间的概念要点
1、在Python中,通常有这几种方式来表示时间:时间戳 、格式化的时间字符串 、元组(struct_time共九个元素)。由于Python的time模块实现主要调用C库,所以各个平台可能有所不同。 2、UTC(Coordinated Universal Time,世界协调时)亦即格林威治天文时间,世界标准时间。在中国为UTC+8。DST(Daylight Saving Time)即...原创 2012-11-20 13:34:31 · 203 阅读 · 0 评论 -
Truth Value Testing (Python)
Any object can be tested for truth value, for use in an if or while condition or as operand of the Boolean operations below. The following values are considered false: None False zero...原创 2012-12-20 16:37:22 · 226 阅读 · 0 评论