def time2stamp(self, t): s_t=time.strptime(t,"%Y/%m/%d %H:%M:%S") mkt=int(time.mktime(s_t)) return(mkt)
时间: 2024-05-21 15:17:30 浏览: 77
string-to-time-stamp.rar_labview 时间_site:www.pudn.com_tc3 string
这段代码是一个函数用于将时间字符串转换成时间戳。具体来说,它接收一个时间字符串作为参数t,将该字符串按照"%Y/%m/%d %H:%M:%S"的格式解析成一个struct_time对象s_t,然后利用time模块中的mktime函数将该struct_time对象转换成时间戳(即秒数),并最终返回该时间戳。
阅读全文