簡體   English   中英

如何使用python運行多個文件

[英]How to run multiple files using python

我正在嘗試從桌面上的文件夾中運行多個文本文件,我必須從中搜索單詞olympic,如果它在那50個文本文件中找到了olympic,則應將其保存在output.txt中,例如textfile1 = 2 textfile2 = 1和依此類推,直到texfile = 50

import glob
import re
write_file = open("output.txt")
flist = glob.glob("./*.py")   # adjust glob pattern as desired
print flist
print " lines : path to file"
for fpath in flist:
    with open(fpath) as f: #open files
        lines = f.readlines()
        if (lines == 'olympic'):
            write_file.write("%s" % lines) #write the results
        print "%6d : %s" % (len(lines),fpath)
        #with open securely opens and closes the file
write_file.close() # close file

這就是我想要做的,但是是的,我知道它充滿了錯誤:)

我正在嘗試運行多個文件,但不是手動運行,我希望它自動運行整個目錄/文件夾中的文件,並將其輸出保存在一個文本文件中。.' I have 50 text files and all files have word olympic , some have 1 some have 2/3 etc , i want to count the words from each text file and than save their output in one text file , like textfile1 = 2 , textfile2 = 3 etc in output.txt

嘗試這個

import os
import re

filelist = [file for file in os.listdir('.') if '.py' in file]

for file in filelist:
  f = open(file,"r")
    lines = f.readlines()
    sum=0
    sum1=0
    for line in lines:
      if "olympics" in line:
        len(re.findall('\Wolympics\W', line))
        sum=sum+1
        print sum
      elif "Olympics" in line:
        sum1=sum1+1
        print sum1
    print "%6d : %s" % (len(line),file.name)
    f.close()

不太確定您要做什么,但我試了一下...

像這樣的東西:

fetch.py

#! /usr/bin/env python
import os
import sys


def get_counts(filepath, niddle):
    with open(filepath, 'rb') as f:
        return f.read().count(niddle)


if __name__ == '__main__':
    folder = sys.argv[1]
    niddle = sys.argv[2]
    assert os.path.isdir(folder), "Not a folder"
    output = open('results.txt', 'w')
    for dirpath, dirnames, filenames in os.walk(folder):
        for filename in filenames:
            if not filename.endswith('.html'): # or whatever
                continue
            filepath = os.path.abspath('%s/%s' % (dirpath, filename))
            result = '%s = %d' % (filepath, get_counts(filepath, niddle))
            output.write(result)
    output.close()

用於:

$ python fetch.py /path/to/search olimpic

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM