我正在尝试将文件格式从Mhtml转换为Xlsx。
我尝试使用subprocess.Popen在excel中打开Mhtml,但是我对如何将excel中的subprocess.Popen对象保存不了解。
file= 'C:\\Users\\User\\Desktop\\2018\\01Jan\\TIME-20180101.mht'
import os
import openpyxl
import subprocess
#excel directory
exel="C:\\ProgramData\\Microsoft\\Windows\\Start Menu\\Programs\\Microsoft Office 2013\\Excel 2013.lnk"
#Open the workbook in MS Excel
f=subprocess.Popen([exel,file], shell=True)