吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 521|回复: 1
收起左侧

[学习记录] 自动生成三位数加减法并导出docx格式

[复制链接]
cenoser795 发表于 2024-5-5 18:12
孩子学校要求每天100道三位数加减法,于是,写了段python小代码实现。
实现:
1、随机生成100道三位数加减法
2、计算结果介于0和1000之间
3、导出docx的word格式,每页4列,每列25道,共100道
[Python] 纯文本查看 复制代码
from docx import Document
import random

def generate_question():
    num1 = random.randint(100, 999)
    num2 = random.randint(100, 999)
    operator = random.choice(['+', '-'])
    # 保证结果在0到1000之间
    if operator == '+':
        answer = num1 + num2
        while answer > 1000:
            num1 = random.randint(100, 999)
            num2 = random.randint(100, 999)
            answer = num1 + num2
    else:
        answer = num1 - num2
        while answer < 0:
            num1 = random.randint(100, 999)
            num2 = random.randint(100, 999)
            answer = num1 - num2

    question = f"{num1} {operator} {num2} = "
    return question, answer

def generate_questions(num_questions):
    questions = []
    for _ in range(num_questions):
        question, answer = generate_question()
        questions.append((question, answer))
    return questions

def save_to_docx(questions, filename):
    document = Document()
    table = document.add_table(rows=25, cols=4)
    row_index = 0
    col_index = 0
    for question, _ in questions:
        cell = table.cell(row_index, col_index)
        cell.text = question
        col_index += 1
        if col_index == 4:
            col_index = 0
            row_index += 1
            if row_index == 25:
                row_index = 0
                document.add_page_break()
    document.save(filename)

if __name__ == "__main__":
    num_questions = 100
    questions = generate_questions(num_questions)
    save_to_docx(questions, "math_questions.docx")

注意:
1、需要pip install python-docx
2、本代码借助cgpt实现
3、每天一百道足够了,不要给孩子更多压力,都不容易

免费评分

参与人数 2吾爱币 +2 热心值 +1 收起 理由
pjj811885 + 1 我很赞同!
52bojie + 1 + 1 谢谢@Thanks!

查看全部评分

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

52bojie 发表于 2024-5-5 22:22
学习了,谢谢分享
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-24 15:00

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表