假设文件夹“ images”包含一些图像文件,如何使用2线程在循环内访问2 diff文件。
需要调用一个处理图像的“某些功能”,
thread1->应该获取第一个图像文件
线程2->应该获取第二个图像文件
示例:
for filename in os.listdir("images"):
thread1=threading.Thread(target="some function", agrs=("images"+filename))
thread1.start()
# want to access the second file from os.listdir how can we do that
thread2 = threading.Thread(target="some function", args=("images"+filename))
thread2.start()