python3获取当前时间的13位时间戳

#python3获取当前时间的时间戳(13位)
import time
def mise_time():
    return int(round(time.time() * 1000))

python3 获取10位时间戳

import time

int(time.time())

You May Also Like

About the Author: 萌新