错误原因,类型出错误啦,转换不了!
我的解决:
>>> time.mktime(time.localtime())
1545053905.0
1
2
具体就看下面的!
我的报错:
>>> time.mktime(now)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: Tuple or struct_time argument required
>>>
1
2
3
4
5
因为上面的时间转换,现在格式不支持互相转换啦。然后就报错误啦!
这样就OK啦!
---------------------
转载,仅作分享,侵删
作者:想搞网络安全
原文:https://blog.csdn.net/weixin_42859280/article/details/85057206
|
|