Define multiple threads in a process

Source: Internet
Author: User

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

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.