获取当前系统时间戳
1 | int(round(time.time() * 1000)) |
时间戳转换为ISO 8601
输入一个时间戳 中国标准时间2019年9月1日上午8时 1567296000000 输出 ISO Date
1 | int(round(time.time() * 1000)) |
输入一个时间戳 中国标准时间2019年9月1日上午8时 1567296000000 输出 ISO Date
1 | from subprocess import check_output, STDOUT |
How to catch exception output from Python subprocess.check_output()?