python-6-1

Posted happyna

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python-6-1相关的知识,希望对你有一定的参考价值。

1.定义一个时间戳转换成格式化时间的函数

import time
def timestamp_to_fomat(timestamp= None,format =‘%Y-%m-%d %H:%M:%S‘ ):
#1.默认返回当前格式化好的时间
#2.传入时间戳的话,把时间戳转换成格式化好的时间,返回
if timestamp:
time_tuple = time.localtime(timestamp)
res = time.strftime(format,time_tuple)
else:
res = time.strftime(format) #默认取当前时间
return res
2.
定义一个格式化好的时间转换成时间戳的函数:
def strToTimestamp(str=None,format=‘%Y%m%d%H%M%S‘):
if str: #如果传了时间的话
tp = time.strptime(str,format) #转成时间元祖
res = time.mktime(tp) #在转成时间戳
else:
res = time.time() #默认取当前的时间戳
return int(res)

















以上是关于python-6-1的主要内容,如果未能解决你的问题,请参考以下文章