if not os.path.isdir("DirectoryName"):
os.makedirs("DirectoryName")
if not os.path.isfile('FileName.xlsx'):
wb = openpyxl.Workbook()
dest_filename = 'FileName.xlsx'
我有以下問題:我想在我有蟒蛇文件,並在目錄下創建FileName.xlsx同一目錄下創建一個目錄:目錄名和我的天堂現在還不知道該怎麼做。你能幫我嗎?在不同的目錄中創建一個Excel文件
感謝
嘗試使用'DirectoryName/FileName.xslx'? – Selcuk
我試過這個:wb = openpyxl.Workbook('DirectoryName/FileName.xslx'),它不起作用 – Jane