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

Python_报错:TypeError: Tuple or struct_time argument required

时间:2018-10-04 16:41:16      阅读:1558      评论:0      收藏:0      [点我收藏+]

标签:span   相互   struct   关系   typeerror   back   原因   last   traceback   

报错:TypeError: Tuple or struct_time argument required

原因:时间戳和格式化处理时间不能直接使用会报错

 

上代码:

import time

time3 = time.asctime(time.time())#

print ("本地时间为 :",time3)

>>> import time
>>> time3 = time.asctime(time.time())#
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: Tuple or struct_time argument required
>>> print ("本地时间为 :",time3)

 

所以需要注意他们之间的转换关系

时间戳——时间元祖&时间元祖——格式化时间 是能相互转换的

但是,时间戳——格式化时间 不能直接相互转换,需要转为时间元祖进行过渡

Python_报错:TypeError: Tuple or struct_time argument required

标签:span   相互   struct   关系   typeerror   back   原因   last   traceback   

原文地址:https://www.cnblogs.com/rychh/p/9742413.html

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