#coding=utf-8
import xlrd,chardet,traceback,csv
#根据列名获取相应序号
def getColumnIndex(table,columnName):
columnIndex=None
for i in range(table.ncols):
if(table.cell_value(0,i)==columnName):
columnIndex=i
break
return columnIndex
#根据Excel中sheet名称读取数据
def readExcelDataByName(fileName,sheetName):
table=None
try:
data=xlrd.open_workbook(fileName)
table=data.sheet_by_name(sheetName)
except Exception:
pass
return table
if __name__=='__main__':
#example
csv_file=open('房源清单.csv','w+',newline='',encoding='utf-8')
writer=csv.writer(csv_file)
fileName=r'/Users/Desktop/python/python生成现金流套表/房源清单-(截止1031).xlsx'
sheetName='Sheet1'
table=readExcelDataByName(fileName,sheetName)
list=[]
for i in range(0,8000):
try:
xm=table.cell_value(i,getColumnIndex(table,'项目'))
cplx=table.cell_value(i,getColumnIndex(table,'产品类型'))
fymc=table.cell_value(i,getColumnIndex(table,'房源名称'))
except Exception:
pass
list.append([xm,cplx,fymc])
for row in list:
writer.writerow(row)
csv_file.close()
网站题目:python提取Excel中的特定列生成新的表格
文章地址:https://www.cdcxhl.com/article40/gcojeo.html
成都网站建设公司_创新互联,为您提供微信公众号、网页设计公司、动态网站、搜索引擎优化、网站导航、
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联