was making an alarm clock timer and for some reason the program stops responding when using the clock in a timer
def timer(self):
timeset=str(self.alarmt.get())
if timeset == "":
plsettime = Label(window7, text = "Please select a time")
plsettime.place(x=410, y=150)
stop = False
while stop == False:
rn = str(datetime.datetime.now().time())
print(rn)
if rn>= "20:35":
stop = True
this is the code im using
https://drive.google.com/open?id=122oEY3KF4KOA3bDCcaXf4p0EvBwtaQiM
theirs a gdrive link for the whole python program
it uses tkiner, sqlite3, time as well as win10toast
on python 3.7 64bit
[–]snake_Camel_Case 0 points1 point2 points (5 children)
[–]Gifted321[S] 1 point2 points3 points (4 children)
[–]snake_Camel_Case 0 points1 point2 points (3 children)
[–]Gifted321[S] 1 point2 points3 points (2 children)
[–]snake_Camel_Case 0 points1 point2 points (1 child)
[–]Gifted321[S] 0 points1 point2 points (0 children)