for i in range (len (answers)):
submitdata = answers[i]
self.threading_run(submitdata)
def threading_run (self,submitdata):
requests.post.
is there any way to use single thread to simulate 1. To operate, now I use the tkinter, main thread will card the main interface,
can I use the thread, only after the first thread has finished running, to execute the second thread
I changed him to
for i in range (len (answers)):
submitdata = answers[i]
-sharpself.threading_run(submitdata) -sharp
T = threading.Thread(target=self.threading_run, args=(submitdata,)) -sharp
T.start()
T.join()
found that the interface is stuck again. What to do.