Mac上时间戳转换

Python将十六进制转十进制和时间戳

#!/usr/bin/python
# -*- coding: UTF-8 -*-
import sys
import datetime

a = int("0x"+sys.argv[1], 0)
datetime = time.localtime(a)
strTime = time.strftime('%Y-%m-%d %H:%M:%S',datetime)
print str(a) + "\n" + strTime

Python将当前时间转十进制和十六进制

import sys
import time

datetime = str(time.time())
print datetime[0:10]
a = hex(int(datetime[0:10]))
print str(a[2:])

结果如图
Mac上时间戳转换_第1张图片
文件执行快捷配置
这里写图片描述

你可能感兴趣的:(Mac小工具)