In this video I’ll talk about threading. What happens when your program hangs or lags because some function is taking too long to run? Threading solves that very easily!
Asynchronous threading is something people ask me about all the time. With Tkinter, it’s actually incredibly easy to use threading. We’ll just import threading and then start a thread whenever we run a function that we know will stall our program.
Add comment