标题: [问题求助] python的线程如何使用 [打印本页]
作者: netdzb 时间: 2020-4-18 11:02 标题: python的线程如何使用
- #!/usr/bin/python
- # -*- coding: UTF-8 -*-
-
- import thread
- import time
-
- # 为线程定义一个函数
- def 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 to start thread"
-
- while 1:
- pass
复制代码
作者: wujunkai 时间: 2020-4-18 13:42
回复 1# netdzb
多线程用- from threading import Thread as thread
复制代码
比较正常。。。
欢迎光临 批处理之家 (http://bbs.bathome.net/) |
Powered by Discuz! 7.2 |