Posts by Estudante Python • 69 points
2 posts
-
6
votes1
answer144
viewsQ: What is the Join() function for in the threading module?
I’ve seen the function join() for the module threading, but I didn’t quite understand what she does.
-
-2
votes1
answer39
viewsQ: How can I use more than one function in the same Thread?(python)
I already tried that but it says that the is not defined: import threading as te import time b=[] def c(): global a a=0 while b==[]: time.sleep(0.001) a+=0.001 def i(): b.append(input('enter'))…