从python目录中获取html文件

时间:2017-03-17 08:52:08

标签: python python-2.7 python-3.x

我有大约5个html文件,我试图生成一个鳕鱼,在我的python环境中逐个获取它们,而不是在我的ipython环境中复制它们。这是我试过的代码:

import os
path = 'D:\\pdftohtml'
for filename in os.listdir(path):
    if filename.endswith('.xml'): continue
    fullname = os.path.join(path, filename)
    tree = ET.parse("calculation.xml")

但是这段代码没有给我所需的输出。 任何人都可以帮我这个吗?

0 个答案:

没有答案