03 自动生成统计报表

文章引用自网易云课堂《用Python自动办公,做职场高手》
网址:https://study.163.com/course/introduction/1006277004.htm
测试文件1:https://share.weiyun.com/5bFo3Sk
测试文件2:https://share.weiyun.com/5NRq0zM

一、统计报表格式

统计表_模板.jpg
import xlrd
import xlwt
from xlutils.copy import copy

xlsx = xlrd.open_workbook('d:/auto_office/excel/7月下旬入库表.xlsx')
table = xlsx.sheet_by_index(0)

all_data = []    # 创建一个列表,用来存储工作簿中每一行的数据
for n in range(1, table.nrows):    # 用for循环,使n的值从1到10,步长为1.   table.nrows为读取整个列表的行数
    company = table.cell(n, 1).value    # 读取第n行的销售商名称
    price = table.cell(n, 3).value    # 读取第n行的单价
    weight = table.cell(n, 4).value    # 读取第n行的重量
    data = {'company':company, 'weight':weight, 'price':price}    # 构建成'销售商|入库量|单价'的结构
    all_data.append(data)    # 添加到上面创建的列表里

a_weight = []    # 创建一个列表,用于储存'张三粮配'的吨数,不是直接累加,而是单个存储
a_total_price = []    # 创建一个列表,用于储存'张三粮配'的每一次入库总价,不是直接累加,而是单个存储
b_weight = []    # 创建一个列表,用于储存'李四粮食'的吨数
b_total_price = []    # 创建一个列表,用于储存'李四粮食'的每一次入库总价
c_weight = []    # 创建一个列表,用于储存'王五小麦'的吨数
c_total_price = []    # 创建一个列表,用于储存'王五小麦'的每一次入库总价
d_weight = []    # 创建一个列表,用于储存'赵六麦子专营'的吨数
d_total_price = []    # 创建一个列表,用于储存'赵六麦子专营'的每一次入库总价

for i in all_data:    # 用for循环历遍all_data中的所有条目
    if i['company'] == '张三粮配':    # 如果条目中的公司为'张三粮配'
        a_weight.append(i['weight'])    # 储存'张三粮配'的吨数,不是直接累加,而是单个存储
        a_total_price.append((i['weight'] * i['price']))    # 储存'张三粮配'的每一次入库总价,不是直接累加,而是单个存储
    if i['company'] == '李四粮食':
        b_weight.append(i['weight'])
        b_total_price.append((i['weight'] * i['price']))
    if i['company'] == '王五小麦':
        c_weight.append(i['weight'])
        c_total_price.append((i['weight'] * i['price']))
    if i['company'] == '赵六麦子专营':
        d_weight.append(i['weight'])
        d_total_price.append((i['weight'] * i['price']))

tem_excel = xlrd.open_workbook('d:/auto_office/excel/统计表_模板.xls', formatting_info=True)    # 带着格式打开'日统计表.xls'
tem_sheet = tem_excel.sheet_by_index(0)    # 通过索引读取工作表1

new_excel = copy(tem_excel)    # 复制tem_excel模板
new_sheet = new_excel.get_sheet(0)    # 获取新new_excel的工作表1

style = xlwt.XFStyle()    # 初始化一个样式,style

font = xlwt.Font()    # 初始化一个字体
font.name = '微软雅黑'    # 选择'微软雅黑'字体
font.bold = True    # 加粗,不加粗写False
font.height = 360    # 设置字体大小,18号 * 系数20 = 360
style.font = font    # style的字体样式为上面的font

borders = xlwt.Borders()    # 初始化单元格的表框
borders.top = xlwt.Borders.THIN    # 添加细线上边,THIN表示细线
borders.bottom = xlwt.Borders.THIN    # 添加下边
borders.left = xlwt.Borders.THIN    # 添加细线左边
borders.right = xlwt.Borders.THIN    # 添加细线右边
style.borders = borders    # style的边框样式为上面的borders

alignment = xlwt.Alignment()    # 初始化对齐
alignment.horz = xlwt.Alignment.HORZ_CENTER    # 水平居中
alignment.vert = xlwt.Alignment.VERT_CENTER    # 垂直居中
style.alignment = alignment    # style的对齐方式为上面的alignment

new_sheet.write(2, 1, len(a_weight), style)    # len()可以统计a_weight列表的条目数,即统计共有多少车
new_sheet.write(2, 2, round(sum(a_weight), 2), style)    # sum()对a_weight的数据进行求和,即计算总吨数,round()保留两位小数
new_sheet.write(2, 3, round(sum(a_total_price), 2), style)
new_sheet.write(3, 1, len(b_weight), style)
new_sheet.write(3, 2, round(sum(b_weight), 2), style)
new_sheet.write(3, 3, round(sum(b_total_price), 2), style)
new_sheet.write(4, 1, len(c_weight), style)
new_sheet.write(4, 2, round(sum(c_weight), 2), style)
new_sheet.write(4, 3, round(sum(c_total_price), 2), style)
new_sheet.write(5, 1, len(d_weight), style)
new_sheet.write(5, 2, round(sum(d_weight), 2), style)
new_sheet.write(5, 3, round(sum(d_total_price), 2), style)

new_excel.save('d:/auto_office/excel/日统计(填写).xls')

二、结果

日统计(填写).jpg

你可能感兴趣的:(03 自动生成统计报表)