编程爱好者之家

python获取当前时间三个小时之后的随机时间戳

2024-07-18 10:41:24 21

编程爱好者之家为大家带来python获取当前时间三个小时之后的随机时间戳具体代码。

def random_timestamp_in_three_hours():
    # 当前时间戳
    current_timestamp = time.time()
    # 3小时的秒数
    three_hours_in_seconds = 3 * 3600
    # 随机秒数(范围在0到3小时的秒数内)
    random_seconds = random.randrange(three_hours_in_seconds)
    # 随机时间戳
    random_timestamp = current_timestamp + random_seconds
    return int(random_timestamp)


同类文章