Python 创建函数并将其作为单进程的完整代码

内容摘要
这篇文章主要为大家详细介绍了Python 创建函数并将其作为单进程的完整代码,具有一定的参考价值,可以用来参考一下。

感兴趣Python 创建函数并将其作为单进程的完整代码的小伙
文章正文

这篇文章主要为大家详细介绍了Python 创建函数并将其作为单进程的完整代码,具有一定的参考价值,可以用来参考一下。

感兴趣Python 创建函数并将其作为单进程的完整代码的小伙伴,下面一起跟随php教程的小编罗X来看看吧。<br>
#  php教程网 (www.idcnote.com) 
import multiprocessing
import time

def worker(interval):
    n = 5
    while n > 0:
        print("The time is {0}".format(time.ctime()))
        time.sleep(interval)
        n -= 1

if __name__ == "__main__":
    p = multiprocessing.Process(target = worker, args = (3,))
    p.start()
    print "p.pid:", p.pid
    print "p.name:", p.name
    print "p.is_alive:", p.is_alive()
结果:
p.pid:8736p.name: Process-1p.is_alive: TrueThe time is Tue Apr2120:55:122015The time is Tue Apr2120:55:152015The time is Tue Apr2120:55:182015The time is Tue Apr2120:55:212015The time is Tue Apr2120:55:242015

注:关于Python 创建函数并将其作为单进程的完整代码的内容就先介绍到这里,更多相关文章的可以留意

代码注释

作者:喵哥笔记

IDC笔记

学的不仅是技术,更是梦想!