First thread example : Thread « Thread « Python Tutorial

Home
Python Tutorial
1.Introduction
2.Data Type
3.Statement
4.Operator
5.String
6.Tuple
7.List
8.Dictionary
9.Collections
10.Function
11.Class
12.File
13.Buildin Function
14.Buildin Module
15.Database
16.Regular Expressions
17.Thread
18.Tkinker
19.wxPython
20.XML
21.Network
22.CGI Web
23.Windows
Python Tutorial » Thread » Thread 
17.1.1.First thread example
import threading, time
from sys import stdout

def sleepandprint():
    time.sleep(1)
    print "Hello from both of us."

def threadcode():
    stdout.write("Hello from the new thread.  My name is %s\n" % threading.currentThread().getName())
    sleepandprint()

print "Before starting a new thread, my name is", threading.currentThread().getName()

t = threading.Thread(target = threadcode, name = "ChildThread")

t.setDaemon(1)

t.start()
stdout.write("Hello from the main thread.  My name is %s\n" % threading.currentThread().getName())
sleepandprint()

t.join()
17.1.Thread
17.1.1.First thread example
17.1.2.Start threads to print time at different intervals
17.1.3.Loops Executed by a Single Thread
17.1.4.Sleep in a thread
17.1.5.Join threads
17.1.6.Start threads
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.