我有一个创建JSON文件的python应用程序。我需要每天在午夜,中午和晚上执行三次应用程序。
import json
def add():
a = 10
b = 20
c = a+b
f = open("add.json","w")
f.write(str(c))
def subtract():
a = 10
b = 20
c = b-a
f = open("subtract.json","w")
f.write(str(c))
add()
subtract()
我需要在指定时间自动运行应用程序