python3 thread
Posted Cluster Note
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python3 thread相关的知识,希望对你有一定的参考价值。
...占位
# -*- coding:utf-8 -*- # date:20200616 # auth:hxx@uniontech.com # description: 后台计算期间,打印一堆无效内容, 查询完成后,停止无效打印, 输出有效内容 from mdiso.dbcon import DBClient from mdiso.shrun import ShRun from threading import Thread import time mydb=DBClient() def func1(): diff_res=mydb.diff_ini_cur() #time.sleep(10) t1=Thread(target=func1) fo=open(‘/tmp/mdsum_ini‘, ‘r‘) data=fo.readline() t1.start() while t1.isAlive(): if len(data) >3 and t1.isAlive() : print(data.strip()) data=fo.readline() else: fo.seek(0) data=fo.readline() time.sleep(0.05) fo.close() #print("in while liave", time.ctime(time.time())) print("main end ", time.ctime(time.time()))
以上是关于python3 thread的主要内容,如果未能解决你的问题,请参考以下文章
NDK: ant 错误 [javah] Exception in thread "main" java.lang.NullPointerException 多种解决办法(代码片段
Python3 socket 实现即时通讯脚本,threading 多线程