简体   繁体   English

python中如何在多个文本文件中显示输出,例如:在1.txt,2.txt,3.txt中打印1到10的数字

[英]How to show the output in multiple text files in python, for example: print digits from 1 to 10 in 1.txt,2.txt,3.txt

How to show the output in multiple text files in python, for example: print digits from 1 to 10 in 1.txt(o/p-1),2.txt(o/p-2),3.txt(o/p-3) files... Here is a piece of code that I tried, to get the image files as text and store it in individual folders.如何在python中显示多个文本文件中的输出,例如:在1.txt(o/p-1),2.txt(o/p-2),3.txt(o/)中打印从1到10的数字p-3) 文件...这是我尝试过的一段代码,用于将图像文件作为文本获取并将其存储在各个文件夹中。

     c=-1

     outFile=[] //created a list,as it would overwrite the same outfile multiple times if not used(expecting it to be a different file when list is used)


     for i in range(0, len(onlyfiles)):
                

   `     
         text = pytesseract.image_to_string(images[i])

         c=c+1

         outFile.append(c)

         outFile[c] = open(str1+"outputfile.txt", "w")//str values could be incremented using a different loop/function to have difference in name.
  
         outFile[c].write(text)

         outFile[c].close()

Any modification or new approach is really appreciated.任何修改或新方法都非常感谢。

for i in images:
    text = pytesseract.image_to_string(i)
    with open(f"{i}.txt", w) as f:
        f.write(text)

Assumption:假设:

  1. We will save the text files (1.txt, 2.txt, .... ) in current directory.我们将在当前目录中保存文本文件 (1.txt, 2.txt, .... )。
  2. images is an array containing multiple images (not the physical location) images是一个包含多个图像的数组(不是物理位置)

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM