码迷,mamicode.com
首页 > 编程语言 > 详细

python中关于操作时间的方法(一)

时间:2017-07-07 14:30:04      阅读:214      评论:0      收藏:0      [点我收藏+]

标签:doc   http   imp   target   title   官方   html   当前时间   lib   

在python编程操作中,只要遇到与时间的有关的问题,都要想到datetime和time两个标准库模块。通过用两个模块内部的方法,加深理解。

有时希望提取现在时间分钟的方法,来实现某些操作。例如:

>>>import datetime
>>>i=datetime.datetime.now()
>>>print ("当前分钟是%s"%i.minute)

 当然,可以把当前时间化为整数型

>>>timefeng=int (i.minute)
>>>print timefeng

然后,把变量timefeng绑定在当前时间的分钟数上,那么可以使用下面的语句检查是不是“到了整点”

>>>if timefeng % 60 ==0:print On the hour!’

另一种获取时间的方式

>>>import time 
>>>print (time.strftime("%H:%M:%S))

 

 

 

 

 

要了解更多,请参考time官方文档 

 

python中关于操作时间的方法(一)

标签:doc   http   imp   target   title   官方   html   当前时间   lib   

原文地址:http://www.cnblogs.com/zzw818/p/7099597.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!