#!/usr/bin/env python #coding=gbk #此PY用来统计一个execl文件中的特定一列的值的分类 import win32com.client filename=raw_input("请输入要统计文件的详细地址:") flag=0 #用于判断文件 名如果不带‘日'就为 0 if 'xc8xd5' in filename:flag=1 print 50*'='+' 请稍等,程序正在统计中。。' try: xls=win32com.client.Dispatch('et.Application') try: xlsfile=xls.Workbooks.Open(filename) #打开指定的文件,一般打开的是sheet1 sheet=xlsfile.Worksheets('Sheet1') except: print '文件找开错误!' exit(1) print '程序正在自动退出。。' if sheet.Cells(3,6).Value!=u'业务类型' or sheet.Cells(3,3).Value!=u'转办单位': print '您输入的表格已不是默认的表格,数据格式有误' exit(1) #这个判断是当文件中的特定列改变时,直接退出程序 i=4 dept=sheet.Cells(i,3).Value type=sheet.Cells(i,6).Value typelist=[] #用于存放数据的列表,下面就是取sheet表里的某一列数据 deptlist=[] #用于存放转办单位的列表 while type: typelist.append(type) deptlist.append(dept) i=i+1 type=sheet.Cells(i,6).Value dept=sheet.Cells(i,3).Value #存放列的数据到二个列表中 counts=len(typelist) #总件数 if counts==0: print '输入的文件统计
希望本文所述对大家的Python程序设计有所帮助。