0
我需要遍歷給定目錄中的.html文件,並從中刪除數據。到目前爲止,這是我的代碼,我將如何訪問裏面的腳本?迭代並使用目錄中的HTML文件 - python
import os
directory ='/Users/xxxxx/Documents/sample/'
for filename in os.listdir(directory):
if filename.endswith('.html'):
print(os.path.join(directory,filename))
else:
continue
(操作系統:Mac/Python3.x)