Hey guys,
I have already worked on a program which uses threads, but today I just wanted to work on threading, and only threading:
import threading
class first_time(threading.Thread):
def print_first_time(self):
print("What is your name?")
for x in range(1000):
first_time().start()
But, the problem is, nothing happens! Why is it acting so strangely?