In this lesson, you’ll learn about daemon threads. The main difference between a regular thread
and a daemon thread is that the main thread will not wait for daemon threads to complete before exiting. If you download the sample code, you can get your own copy of 04-daemon.py
:
To learn more, you can also check out the documentation.
Alvaro Formoso on April 2, 2020
Hello! One quick question from my side: In the previous video, without using Daemon, for me (With Spyder Interpreter and Python 3.7.1) it was doing already the behaviour that you got with daemon=True. I mean, I could write in the console more things just after Main Ended sentence is written on the console.
Is that an update from the library?
Thanks! And Good job, the webpage is very cool! :)