python 如何使用hex将int 转为16进制,然后高位补0
函数定义
def time_covert(year,month,day,hour,minute,sec):
print(hex(year)[2:].zfill(4)+hex(month)[2:].zfill(2)+hex(day)[2:].zfill(2)+hex(hour)[2:].zfill(2)+hex(minute)[2:].zfill(2)+hex(sec)[2:].zfill(2)) # 真妙
调用
time_covert(2020,5,17,0,0,0)
调用结果
07e40511000000
共有 0 条评论