Python 创建函数并将其作为单进程的完整代码
内容摘要
这篇文章主要为大家详细介绍了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:
8736
p.name: Process
-1
p.is_alive: True
The time is Tue Apr
21
20:
55:
12
2015
The time is Tue Apr
21
20:
55:
15
2015
The time is Tue Apr
21
20:
55:
18
2015
The time is Tue Apr
21
20:
55:
21
2015
The time is Tue Apr
21
20:
55:
24
2015
注:关于Python 创建函数并将其作为单进程的完整代码的内容就先介绍到这里,更多相关文章的可以留意
代码注释