-1
我想替換我的Excel表格中的行的名稱。無論行名稱可能是,我有來替換它們:使用python替換Excel中的行名稱
- 街
- 市
- 國家
- 郵編
我能看懂行的名稱。任何人都可以幫我替換我讀的名字。這是我的一段代碼。由於
import xlrd
workbook = xlrd.open_workbook('Path to Excel File')
sheet = workbook.sheet_by_index(0)
print(sheet)
for value in sheet.row_values(0):
print(value)
你見過[這](https://stackoverflow.com/questions/26957831/edit-existing-excel-workbooks-and-sheets-with-xlrd-and-xlwt)? – nostradamus
[用xlrd和xlwt編輯現有的excel工作簿和工作表]的可能的副本(https://stackoverflow.com/questions/26957831/edit-existing-excel-workbooks-and-sheets-with-xlrd-and-xlwt) –