import threadingdef loop(): while True: passfor i in range(20): threading.Thread(name='loop', target=loop()).start()
No comments:
Post a Comment