Last active
February 11, 2024 02:53
-
-
Save dcortesnet/1483a85ae0557b7e6c62f00c2ab407f3 to your computer and use it in GitHub Desktop.
Python creación de hilo básico
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from threading import Thread | |
| def counter(): | |
| for i in range(1, 11): | |
| print(i) | |
| t = Thread(target=counter) | |
| t.start() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment