在Unix上,epoch就是UTC时间1970年1月1日 00:00:00 使用python获取自epoch以来的秒数.
#!/usr/bin/python3 import time epoch_time = int(time.time()) print(epoch_time)