python 定时任务有多种方法可以实现,想要定时且顺序执行多个脚本怎么实现,代码如下:
# -*- coding:utf-8 -*-
# Author: lee
import os
from time import sleep
def run():
while 1:
os.system("python ./脚本1.py")
print('Waiting a
python 定时任务有多种方法可以实现,想要定时且顺序执行多个脚本怎么实现,代码如下:
# -*- coding:utf-8 -*-
# Author: lee
import os
from time import sleep
def run():
while 1:
os.system("python ./脚本1.py")
print('Waiting a