python实现修改,每过一秒修改系统时间往后面一天往后面 4小时

import datetime
import time
import win32api

# 获取当前系统时间
current_time = datetime.datetime.now()

# 计算每秒钟需要增加的时间量(这里设定为1天)
time_delta = datetime.timedelta(days=1)

while True:
    try:
        # 计算新的时间
        new_time = current_time + time_delta

        # 设置新的系统时间
        win32api.SetSystemTime(
            new_time.year,
            new_time.month,
            new_time.weekday(),
            new_time.day,
            new_time.hour,
            new_time.minute,
            new_time.second,
            0
        )

        # 输出修改后的日期
        print(f"系统日期已修改为:{new_time.date()}")

        # 更新当前时间
        current_time = new_time

        # 等待一秒钟
        time.sleep(2)

    except Exception as e:
        print(f"发生错误:{e}")
        break

这个是往后面四小时

import datetime
import time
import win32api

# 获取当前系统时间
current_time = datetime.datetime.now()

# 计算每秒钟需要增加的时间量(这里设定为4小时)
time_delta = datetime.timedelta(hours=4)

while True:
    try:
        # 计算新的时间
        new_time = current_time + time_delta

        # 设置新的系统时间
        win32api.SetSystemTime(
            new_time.year,
            new_time.month,
            new_time.weekday(),
            new_time.day,
            new_time.hour,
            new_time.minute,
            new_time.second,
            0
        )

        # 输出修改后的日期
        print(f"系统日期已修改为:{new_time.date()}")

        # 更新当前时间
        current_time = new_time

        # 等待一秒钟
        time.sleep(1)

    except Exception as e:
        print(f"发生错误:{e}")
        break

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值