0
我想進入我的當前文件夾,並將文件夾中帶有字符串「test」的任何文件編輯到單元格0,0上,然後將其另存爲book1。 xlsx但我的代碼給我一個錯誤。誰能幫忙?使用Python編輯Excel文件並將其保存到一個新文件中
import xlrd
import os
import glob
from xlutils.copy import copy
fileDir = os.getcwd()
fileLocation = glob.glob("*.xlsx")
x = copy(fileLocation)
x.get_sheet(0).write(0,0,"test")
x.save('book1.xlsx')
請添加你所得到的錯誤。 – ByteNudger 2014-09-25 04:51:26