gpt4 book ai didi

python - 我需要制作一个多线程程序(python)

转载 作者:行者123 更新时间:2023-11-28 19:21:24 25 4
gpt4 key购买 nike

import multiprocessing
import time
from itertools import product
out_file = open("test.txt", 'w')
P = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p','q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z',]
N = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
M = ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z']
c = int(input("Insert the number of digits you want: "))
n = int(input("If you need number press 1: "))
m = int(input("If you need upper letters press 1: "))
i = []
if n == 1:
P = P + N
if m == 1:
P = P + M
then = time.time()
def worker():
for i in product(P, repeat=c): #check every possibilities
k = ''
for z in range(0, c): #
k = k + str(i[z]) # print each possibility in a txt without parentesis or comma
out_file.write( k + '\n') #
out_file.close()
now = time.time()
diff = str(now - then) # To see how long does it take
print(diff)
worker()
time.sleep(10) # just to check console

代码检查每一种可能性并将其打印在 test.txt 文件中。它有效,但我真的不明白如何加快速度。我看到它在我的四核 CPU 中使用了 1 个内核,所以我认为多线程可能会起作用,即使我不知道如何工作。请帮我。抱歉我的英语不好,我来自意大利。

最佳答案

出于一个简单的原因,您当前无法在当前状态下并行化此代码。

您的辅助函数中存在竞争条件。如果一个进程要关闭您的输出文件,则需要打开该文件的任何其他进程都会引发异常。

你有两种选择来解决这个问题:

  1. 从函数中删除文件关闭并将所有文件写入包装在互斥锁中,以确保文件写入一次仅由一个进程完成。

  2. 从 worker 函数中删除所有文件访问权限,并让它在数组中返回结果。通过这种方式,您可以并行运行多个 worker,并在所有进程完成后整理结果。这样您就可以在代码末尾处理来自主线程/进程的所有文件访问。

关于python - 我需要制作一个多线程程序(python),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24117552/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com