[新手上路]批处理新手入门导读[视频教程]批处理基础视频教程[视频教程]VBS基础视频教程[批处理精品]批处理版照片整理器
[批处理精品]纯批处理备份&还原驱动[批处理精品]CMD命令50条不能说的秘密[在线下载]第三方命令行工具[在线帮助]VBScript / JScript 在线参考
返回列表 发帖

[问题求助] python的线程如何使用

  1. #!/usr/bin/python
  2. # -*- coding: UTF-8 -*-
  3. import thread
  4. import time
  5. # 为线程定义一个函数
  6. def print_time( threadName, delay):
  7.    count = 0
  8.    while count < 5:
  9.       time.sleep(delay)
  10.       count += 1
  11.       print "%s: %s" % ( threadName, time.ctime(time.time()) )
  12. # 创建两个线程
  13. try:
  14.    thread.start_new_thread( print_time, ("Thread-1", 2, ) )
  15.    thread.start_new_thread( print_time, ("Thread-2", 4, ) )
  16. except:
  17.    print "Error: unable to start thread"
  18. while 1:
  19.    pass
复制代码

回复 1# netdzb


    多线程用
  1. from threading import Thread as thread
复制代码
比较正常。。。

TOP

返回列表