#!/usr/bin/env python
# -*- coding: utf-8 -*-
 
import time
 
def now():
    return time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(time.time()))
     
s = '2018-10-26 00:00:00'
print now()
if now() > s:
    print '已过期,无法正常使用'
else:
    print '未过期,可以正常使用'



#s指的是你想要的失效时间。
#now()指的是当前时间。

在这里插入图片描述

#!/usr/bin/env python
# -*- coding: utf-8 -*-
import time
def now():
    return time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(time.time()))
     
s = '2018-10-06 00:00:00'
print now()
if now() > s:
    print '已过期,无法正常使用'
else:
    print '未过期,可以正常使用'

在这里插入图片描述

Logo

CSDN联合极客时间,共同打造面向开发者的精品内容学习社区,助力成长!

更多推荐