Import threading
From time import Ctime,sleep
Import time
def music (name):
Print (' Listening to {name}.{ TIME} '. Format (Name=name,time=ctime ()))
Sleep (3)
Print (' End {time} '. Format (Time=ctime ()))
Def blog (title):
Print (' recording the {title}.{ TIME} '. Format (Title=title,time=ctime ()))
Sleep (5)
Print (' End {time} '. Format (Time=ctime ()))
Threads =[]
T1 =threading. Thread (target=music,args= (' like ',))
T2 =threading. Thread (target=blog,args= (' Beijing ',))
Threads.append (T1)
Threads.append (T2)
if __name__ = = ' __main__ ':
# T1.setdaemon (True) #注: Be sure to set before start. It shows whether the main thread is over or not
# T1 thread is running end, so the main thread is over T2 threads
T2.setdaemon (True) #运行的结果与t1. Setdaemon (true) The result of a different cause is two
# the time at which threads run ends is different
For i in Threads: #运行t1和t2线程
I.start ()
#t2. Join ()
Print (' All over%s '% CTime ())
Define multiple threads in a process