python的thread使用

来源:互联网 发布:风险矩阵RLC 编辑:程序博客网 时间:2024/05/29 07:30
#encoding:utf-8import threadimport timedef print_time(threadName, delay):    count = 0    while count < 5:        time.sleep(delay)        count += 1        print "%s: %s" % (threadName, time.ctime(time.time()))        try:    thread.start_new_thread( print_time, ("Thread-1", 2, ) )    thread.start_new_thread( print_time, ("Thread-2", 4, ) )except:    print "Error:unable tostart thread"while 1:    pass

0 0
原创粉丝点击