python如何给软件设置到期失效
#!/usr/bin/env python# -*- coding: utf-8 -*-import timedef 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() ...
·
#!/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 '未过期,可以正常使用'
更多推荐
已为社区贡献7条内容
所有评论(0)