Python线程打印覆盖自身

Python threading print overwriting itself(Python线程打印覆盖自身)
本文介绍了Python线程打印覆盖自身的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有以下打印函数的线程。

from threading import Thread
from random import *
import time

def PrintRandom():
    rand = random()
    time.sleep(rand)
    print(rand)

if __name__ == "__main__":
    Thread(target=PrintRandom).start()
    Thread(target=PrintRandom).start()

这在大多数情况下都是有效的,输出的内容如下

0.30041615558463897

0.5644155082254415

然而,难得一见的是以下输出

0.56441550822544150.5644155082254416

外壳程序尝试同时打印这两个文件,并返回一个不连贯的语句。有什么办法可以确保第一次输出吗?

推荐答案

是-创建queue。它可以列出您追加要打印新字符串的位置,并使用单独的线程从列表中删除第一个元素并打印它。请确保打印线程在While/For循环中运行,并使用sleep(0.1)方法以不占用太多CPU。

这篇关于Python线程打印覆盖自身的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Leetcode 234: Palindrome LinkedList(Leetcode 234:回文链接列表)
How do I read an Excel file directly from Dropbox#39;s API using pandas.read_excel()?(如何使用PANDAS.READ_EXCEL()直接从Dropbox的API读取Excel文件?)
subprocess.Popen tries to write to nonexistent pipe(子进程。打开尝试写入不存在的管道)
I want to realize Popen-code from Windows to Linux:(我想实现从Windows到Linux的POpen-code:)
Reading stdout from a subprocess in real time(实时读取子进程中的标准输出)
How to call type safely on a random file in Python?(如何在Python中安全地调用随机文件上的类型?)