使用Python3我的要求是從目錄中讀取電子郵件文件並在其中過濾Html標籤。閱讀python中的巨大文本時遇到錯誤
我設法給它做一個大extent.When我嘗試閱讀我的輸出的內容,它提供了一個錯誤
for line in output.splitlines():
AttributeError: 'int' object has no attribute 'splitlines'
for file in glob.glob('spam/*.*'):
output = os.system("python html2txt.py " + file)
for line in output.splitlines():
print(line)
當我打印輸出,它顯示過濾文本。任何幫助表示讚賞。
閱讀的'os.system' ......還有,爲什麼你需要從蟒蛇內運行'python' OS命令的返回值的文檔?導入模塊... –