摘要: 在Unix上,epoch就是UTC时间1970年1月1日 00:00:00 使用python获取自epoch以来的秒数. #!/usr/bin/python3 import time epoch_time = int(time.time()) print(epoch_time) 阅读全文
posted @ 2020-05-28 21:17 一忘如故 阅读(775) 评论(0) 推荐(0) 编辑