Hello<br>I have questions about threading:<br><br>import threading<br>class myThread(threading.Thread):<br> def run(self):<br> print('hello,threads')<br>if __name__=='__main__':<br> threads=myThread()<br>
threads.start()<br><br>Above program does't work at 'Run Module' in IDLE,but it works well under executing scripts.Is it anything wrong?<br>WindowXP,Python 3.0<br>Thanks.<br>