我写了一个函数来检查队列中是否有数据,不使用while True
来使程序始终运行,就像这样:
if __name__ == '__main__':
while True:
res = analy_model.get_data_in_queue()
if not res:
sleep(MAIN_SLEEP_TIME)
continue
for do in res:
# Do operations
sleep(1)
我认为使用while True
并不是很有趣。
为了检查队列是否为异步队列,我阅读了很多资源,但感到困惑。
是否有删除while True
循环的建议?
感谢您分享知识