首页 > 其他 > 详细

时间转时间戳例子

时间:2014-08-07 07:34:49      阅读:342      评论:0      收藏:0      [点我收藏+]

#!/usr/bin/python

import time

import os



if __name__ == ‘__main__‘:

    hwclock_time = " ".join(os.popen("hwclock --show --utc").read().split(" ")[0:6])

    hwclock_timestamp = time.mktime(time.strptime(hwclock_time,‘%a %d %b %Y %I:%M:%S %p‘))

    os_time = time.time()

    difference = abs(int(hwclock_timestamp)-int(os_time))

    if difference > 60: 

        print ‘difference:‘,difference

        exit(1)

    else:

        print ‘time is correct‘


时间转时间戳例子,布布扣,bubuko.com

时间转时间戳例子

原文:http://4249964.blog.51cto.com/4239964/1536498

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!