【demo】
import time,datetime
def result(values):
print(values)
print(type(values))
print('\b')
# 1)获取本地时间戳
timestamp=time.time()
result(timestamp)
#获取10位时间戳:int(timestamp)
# 2)时间戳转换为日期/时间格式
a=time.localtime(timestamp) #将时间戳(秒),转换为元祖
result(a)
b=time.strftime('%Y-%m-%d',a) #将时间元祖,格式化为字符串(日期/时间)
result(b)
# 3)日期/时间格式转换为时间戳
c=time.strptime(b,'%Y-%m-%d') #将字符串,按照字符串的日期/时间格式,解析为时间元祖
result(c)
d=time.mktime(c) #将元祖,转换为时间戳(秒)
result(d)
【结果】
---------------------------------------------------------------------------------------------------------------------
# 1)获取本地时间返回值
1630243970.2964659 <class 'float'>
---------------------------------------------------------------------------------------------------------------------
2)时间戳转日期/时间
time.struct_time(tm_year=2021, tm_mon=8, tm_mday=29, tm_hour=21, tm_min=32, tm_sec=50, tm_wday=6, tm_yday=241, tm_isdst=0) <class 'time.struct_time'>
2021-08-29 <class 'str'>
---------------------------------------------------------------------------------------------------------------------
3)日期/时间转时间戳
time.struct_time(tm_year=2021, tm_mon=8, tm_mday=29, tm_hour=0, tm_min=0, tm_sec=0, tm_wday=6, tm_yday=241, tm_isdst=-1) <class 'time.struct_time'>
1630166400.0 <class 'float'>
1 获取本地时间戳
time.time()
2 时间戳转日期
使用 time.strftime(format[, tuple])?函数:
? ? ? ? 1)format参数传入时间格式化后的格式,例如:"%Y-%m-%d"、"%a %b %d %H:%M:%S %Y" 等;
????????2)tuple需要传入时间元祖格式;
? ? ? ? 3)tuple不传时,默认获取当前时间。
3 日期转时间戳
使用mktime(tuple)函数: ? ? tuple为时间格式的元祖。
4 时间戳、日期、时间转换为时间元祖格式
1??时间戳转元祖
使用localtime([seconds])函数:
? ? ? ? 1)参数seconds为时间戳格式;
? ? ? ? 2)参数seconds不传时,获取本地时间戳。
2??日期/时间转元祖
使用 strptime(string, format) 函数:
? ? ? ? 1)参数string为日期/时间;
? ? ? ? 2)参数format为日期/时间 对应的格式,例如 strptime("2021-08-29","%Y-%m-%d")? ?、time.strptime("Sun Aug 29 21:58:12 2021","%a %b %d %H:%M:%S %Y")
|