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: 萌新

发表评论

您的电子邮箱地址不会被公开。 必填项已用*标注