【发布时间】:2019-03-02 12:42:15
【问题描述】:
编辑:我现在得到一个运行时错误:当第二个计时器达到 0 并调用 Note() 函数时,'主线程不在主循环中'
from datetime import datetime
from threading import Timer
from tkinter import messagebox
import json
def Note():
z = messagebox.showinfo("Note", note)
class Timers:
def __init__(self,a,b,c,d,e):
self.a = month
self.b = day
self.c = hour
self.d = minute
self.e = note
x = datetime.today()
y = x.replace(month=month, day=day, hour=hour, minute=minute, second=0, microsecond=0)
delta_t = y - x
secs = delta_t.seconds
T = Timer(secs, Note)
T.start()
【问题讨论】:
标签: python python-3.x variables import timer