Posts by Junior Correa • 29 points
3 posts
-
1
votes1
answer827
viewsQ: How to run Python function every 1 minute, without using time.Leep()
Is it possible to run a function every 1 minute without using the.Sleep() team? I need to use the computer clock so that, whenever the clock reaches 1 minute, the function is executed. The.Leep()…
-
0
votes1
answer37
viewsA: How to use a Tkinter Checkbutton to interact with a Pandas dataframe
I managed to solve the problem, I used the function "partial". from functools import partial (...) btn_escolhe_cidade = Checkbutton(self.frame, variable=self.cidade, onvalue=id_cidade, offvalue=0,…
-
1
votes1
answer37
viewsQ: How to use a Tkinter Checkbutton to interact with a Pandas dataframe
I’m trying to make an interaction with a dataframe in Pandas, I’ve tried several solution options I found here in stackoverflow, but I haven’t been successful yet. If anyone can help me, I’d be very…