Python 2.7.3 Time与DateTime格式化

时间:2023-03-08 17:05:50
 import time
import datetime class TimeX:
'''时间工具,目前用于格式化时间''' @staticmethod
def GetLocalTimeString_Time(arg_time=time.time()):
'''返回【年-月-日 时:分:秒】格式。如果没有参数,则默认为当前时间'''
return time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(arg_time)); @staticmethod
def GetLocalTimeString_DateTime(arg_datetime=datetime.datetime.now()):
'''返回【年-月-日 时:分:秒】格式。如果没有参数,则默认为当前时间'''
return arg_datetime.strftime('%Y-%m-%d %H:%M:%S' )

用法:

格式化time:

timeString = TimeX.GetLocalTimeString_Time()

此时timeString为这种类型【1999年03月22日 15时22分08秒】

格式化datetime:

datetime_string = TimeX.GetLocalTimeString_DateTime()

此时timeString为这种类型【1999年03月22日 15时22分08秒】