属性的使用

 1 import multiprocessing
 2 import time
 3 #定义执行任务的函数
 4 def clock(interval):
 5     for i in range(3):
 6         print('当前时间:{}'.format(time.ctime()))
 7         time.sleep(interval)
 8 if __name__ == "__main__":
 9     #创建子进程
10     p = multiprocessing.Process(target=clock,args=(1,))
11     p.start()
12     p.join()
13     print('p.pid:',p.pid)
14     print('p.name:',p.name)
15     print('p.is_alive:',p.is_alive())
16 import multiprocessing
17 import time
18 #定义执行任务的函数
19 def clock(interval):
20     for i in range(3):
21         print('当前时间:{}'.format(time.ctime()))
22         time.sleep(interval)
23 if __name__ == "__main__":
24     #创建子进程
25     p = multiprocessing.Process(target=clock,args=(1,))
26     p.start()
27     p.join()
28     print('p.pid:',p.pid)
29     print('p.name:',p.name)
30     print('p.is_alive:',p.is_alive())
1 前时间:Fri Apr 10 17:14:14 2020
2 当前时间:Fri Apr 10 17:14:15 2020
3 当前时间:Fri Apr 10 17:14:16 2020
4 p.pid: 2028
5 p.name: Process-1
6 p.is_alive: False

 

posted @ 2020-04-10 17:19  小他_W  阅读(142)  评论(0编辑  收藏  举报