开发定制:学校考试成绩自动处理,可定制规则

 需求分析:
教导处在年中或年尾时要对成绩,按一定规则分析处理。都是些重复性工作。所以有必要自动处理。

广告:按规则定制自动处理软件或网页设计。

以下技术栈和步骤:

  1. 后端 (Flask): Flask 是一个轻量级的 Python Web 框架,适合处理上传文件、数据处理等任务。我们可以利用它处理本地文件,并返回处理结果。

  2. 前端 (HTML + JavaScript): 用 HTML 创建一个简单的网页,提供按钮用于上传文件,以及展示表格的地方。可以用 JavaScript 实现文件上传后的动态表格生成和滚动条。

  3. 数据处理 (Pandas): 使用 pandas 来处理上传的 Excel 文件,读取文件中的表格,根据年级和班级计算学科的平均分。

  4. 文件导出 (XlsxWriter): 在前端提供一个“导出”按钮,将计算后的结果导出为自定义的 Excel 文件。

 

代码实现:

1. 安装必要的库:
pip install flask pandas xlsxwriter

2. 创建 Flask 后端

from flask import Flask, render_template, request, jsonify, send_file
import pandas as pd
import os

app = Flask(__name__)

@app.route('/')
def index():
    return render_template('index.html')

@app.route('/upload', methods=['POST'])
def upload_file():
    file = request.files['file']
    df = pd.read_excel(file)
    
    # 计算年级+班级的平均分
    avg_df = df.groupby(['年级', '班级']).mean().reset_index()

    # 将平均分转换为 JSON 格式返回前端
    return jsonify(avg_df.to_dict(orient='records'))

@app.route('/export', methods=['POST'])
def export_file():
    data = request.json['data']
    df = pd.DataFrame(data)
    
    # 保存为自定义的 Excel 文件
    output_path = 'exported_data.xlsx'
    df.to_excel(output_path, index=False)
    
    # 发送文件到前端供下载
    return send_file(output_path, as_attachment=True)

if __name__ == '__main__':
    app.run(debug=True)

 

 3. 创建前端模板 templates/index.html

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Excel Processor</title>
    <style>
        table {
            width: 100%;
            border-collapse: collapse;
        }
        th, td {
            padding: 8px;
            text-align: left;
            border: 1px solid black;
        }
        #table-container {
            max-height: 400px;
            overflow-y: scroll;
        }
    </style>
</head>
<body>
    <h1>上传文件并计算平均分</h1>
    <input type="file" id="fileInput">
    <button onclick="uploadFile()">打开本地xlsx文件</button>
    <button onclick="exportData()">导出数据</button>

    <div id="table-container">
        <table id="dataTable">
            <thead>
                <tr>
                    <th>年级</th>
                    <th>班级</th>
                    <th>语文</th>
                    <th>数学</th>
                    <th>英语</th>
                </tr>
            </thead>
            <tbody>
            </tbody>
        </table>
    </div>

    <script>
        let tableData = [];

        function uploadFile() {
            const fileInput = document.getElementById('fileInput');
            const file = fileInput.files[0];
            
            if (file) {
                const formData = new FormData();
                formData.append('file', file);

                fetch('/upload', {
                    method: 'POST',
                    body: formData
                })
                .then(response => response.json())
                .then(data => {
                    tableData = data;
                    populateTable(data);
                });
            }
        }

        function populateTable(data) {
            const tbody = document.getElementById('dataTable').querySelector('tbody');
            tbody.innerHTML = '';  // 清空之前的表格数据

            data.forEach(row => {
                const tr = document.createElement('tr');
                tr.innerHTML = `
                    <td>${row['年级']}</td>
                    <td>${row['班级']}</td>
                    <td>${row['语文'] ? row['语文'].toFixed(2) : ''}</td>
                    <td>${row['数学'] ? row['数学'].toFixed(2) : ''}</td>
                    <td>${row['英语'] ? row['英语'].toFixed(2) : ''}</td>
                `;
                tbody.appendChild(tr);
            });
        }

        function exportData() {
            fetch('/export', {
                method: 'POST',
                headers: {
                    'Content-Type': 'application/json'
                },
                body: JSON.stringify({ data: tableData })
            })
            .then(response => response.blob())
            .then(blob => {
                const url = window.URL.createObjectURL(new Blob([blob]));
                const link = document.createElement('a');
                link.href = url;
                link.setAttribute('download', 'exported_data.xlsx');
                document.body.appendChild(link);
                link.click();
                link.parentNode.removeChild(link);
            });
        }
    </script>
</body>
</html>

 

功能:

  1. 文件上传:用户点击按钮选择本地的 xlsx 文件。
  2. 平均分计算:Flask 后端处理文件并计算年级和班级的平均分,返回前端显示。
  3. 表格展示:前端动态生成表格,显示计算出的平均分,并根据行数自动出现滚动条。
  4. 数据导出:用户可以点击“导出数据”按钮,将处理后的数据导出为 Excel 文件。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

PyAIGCMaster

1毛钱也是爱

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值