在Windows下定时执行Python脚本,你可以按照以下步骤进行操作: 1. 选择或编写需要定时执行的Python脚本 首先,确保你有一个需要定时执行的Python脚本。例如,你有一个名为greet.py的脚本,内容如下: python import datetime def greet(): now = datetime.datetime.now() data = f"Hello! It's {now.strftime('%Y-...
Windows电脑 方法/步骤 1 打开python开发工具IDLE,新建一个‘test.py’文件,并写代码如下:import timewith open('test.txt', 'a+') as f: f.write(time.strftime('%Y-%m-%d %H:%M:%S',time.localtime())+' aaa\n')2 接下来创建一个定时任务来执行这个...
当写好Python脚本,需要每天自动运行时候时候,操作在以下链接 https://jingyan.baidu.com/article/a681b0dee8dcae7b19434623.html