Users Pricing

forum

Home Forums What does `if __name__ == “__main__”:` do? – MindStick

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

Anonymous User 2004 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?

1 Answers

Markdown for AI

A clean, structured version of this page for AI assistants and LLMs.

Open .md