Users Pricing

forum

home / developersection / forums / what does `if __name__ == “__main__”:` do?

What does `if __name__ == “__main__”:` do?

Anonymous User 1926 13 May 2015
What does the if __name__ == "__main__": do?

# Threading example
import time, thread
def myfunction(string, sleeptime, lock, *args):
    while 1:
        lock.acquire()
        time.sleep(sleeptime)
        lock.release()
        time.sleep(sleeptime)
if __name__ == "__main__":
    lock = thread.allocate_lock()
    thread.start_new_thread(myfunction, ("Thread #: 1", 2, lock))
    thread.start_new_thread(myfunction, ("Thread #: 2", 2, lock))
Also, what does *args mean in this example?

I am a content writter !


1 Answers