以下的文章就是对Pyhon DateTime的模块在实际应用过程中的具体介绍,本文涉及到的Pyhon DateTime相关的类方法整理,以及其相应的代码详解,希望你在看完我们的文章会有所收获。
相关联的模块还有time与calendar 其中的time我们上面已经做了整理。呆会再整理下日历相比time模块来讲的话这个模块在运算上更加方便一点。现在整理一下其帮助文档上面的内容出来
构造方法:
- datetime(year,month,day,[hour[,minute[,
second[,microsecond[,tzinfo]]]]])
参数说明:
- <!--[if !supportLists]-->· <!--[endif]-->MINYEAR
<= year <= MAXYEAR- <!--[if !supportLists]-->· <!--[endif]-->1 <= month
<= 12- <!--[if !supportLists]-->· <!--[endif]-->1 <= day
<= number of days in the given month and year- <!--[if !supportLists]-->· <!--[endif]-->0
<= hour < 24- <!--[if !supportLists]-->· <!--[endif]-->0
<= minute < 60- <!--[if !supportLists]-->· <!--[endif]-->0
<= second < 60- <!--[if !supportLists]-->· <!--[endif]-->0
<= microsecond < 1000000
Pyhon DateTime相关类方法整理
1、today() 返回当前的本地时间值
- if __name__ == '__main__':
- datetimedatetimes = datetime.datetime(2001,12,2)
构造方法参数要指明正确哦
- print datetimes.today()
返回:
- 2010-03-04 14:40:51.783000
即为当前的时间值了
2、
- now([tz])
示例:
- if __name__ == '__main__':
- datetimedatetimes = datetime.datetime(2001,12,2)
- print datetimes.now()
输出:
- 2010-03-04 14:43:09.127000
如果没指定参数即表示当前的时间值!以上的文章就是对Pyhon DateTime的相关实际应用方案的部分介绍。
【编辑推荐】