Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 546 Bytes

117.md

File metadata and controls

19 lines (14 loc) · 546 Bytes
@author jackzhenguo
@desc 
@date 2019/10/16

117 时间转字符时间

from time import strftime, strptime, localtime

In [2]: print(localtime()) #这是输入的时间
Out[2]: time.struct_time(tm_year=2019, tm_mon=12, tm_mday=22, tm_hour=18, tm_min=24, tm_sec=56, tm_wday=6, tm_yday=356, tm_isdst=0)

print(strftime("%m-%d-%Y %H:%M:%S", localtime()))  # 转化为定制的格式
# 这是字符串表示的时间:   12-22-2019 18:26:21
[上一个例子](116.md) [下一个例子](118.md)