Python趣味挑战之给幼儿园弟弟生成1000道算术题


Posted in Python onMay 28, 2021

一、前言

阿姨花了30元给幼儿园的小弟弟买了一本习题,里面都是简单的二元加减法。我一听,惊道:“怎么还花钱买题?我动动手指能给你生成一千条。”

阿姨觉得二元加减太简单了,想要三元加减法的算术题(x + y + z; x + y - z; x - y - z; x - y + z),因为弟弟还小,只会100以内的加减法,不会负数,所以出的算术题不仅计算结果要在[0, 100]内,算式中的任何两位的计算也要在[0, 100]内。

希望弟弟长大后会感谢我,嘻嘻~

二、思路

生成在[1,99]内的随机数x, y, z,若它们的计算结果在[0, 100]内,且算式中的任何两位的计算也在[0, 100]内,就保存在字符串里,作为答案,如"10 + 13 + 9 = 32";将字符串存入set中,因为Python的set是无序且不重复的,所以它会自动打乱和去重;把答案写入文件,写入文件时要写入index(题号)去掉结果再写入另一个文件,作为题目

三、方法

1.生成随机整数:

import random
x = random.randint(1, 99)	# 生成[1, 99]内的整数

2.set:

s = set()	# 初始化要用set()
x = 1
s.add(x)	# 将x插入s

3.将结果存入文件

text = "Hello world!"
with open(file, 'a') as f:	# 追加文本到文件
	# 每次输入前清空文件
	f.seek(0)
    f.truncate()
	# 将文本写入文件
    f.write(text)

四、代码

import random

def fun1(x, y, z):
    s = str(x) + " + " + str(y) + " + " + str(z) + " = " + str(x + y + z)
    return s

def fun2(x, y, z):
    s = str(x) + " + " + str(y) + " - " + str(z) + " = " + str(x + y - z)
    return s

def fun3(x, y, z):
    s = str(x) + " - " + str(y) + " + " + str(z) + " = " + str(x - y + z)
    return s

def fun4(x, y, z):
    s = str(x) + " - " + str(y) + " - " + str(z) + " = " + str(x - y - z)
    return s

def generate(num):
    s = set()
    while len(s) < num:
        x = random.randint(1, 99)
        y = random.randint(1, 99)
        z = random.randint(1, 99)
        if ((x + y >= 0 and x + y <= 100)
                and (y + z >= 0 and y + z <= 100)
                and (x + z >= 0 and x + z <= 100)
                and (x + y + z >= 0 and x + y + z <= 100)):
            s.add(fun1(x, y, z))
        if ((x + y >= 0 and x + y <= 100)
                and (y - z >= 0 and y - z <= 100)
                and (x - z >= 0 and x - z <= 100)
                and (x + y - z >= 0 and x + y - z <= 100)):
            s.add(fun2(x, y, z))
        if ((x - y >= 0 and x - y <= 100)
                and (- y + z >= 0 and - y + z <= 100)
                and (x + z >= 0 and x + z <= 100)
                and (x - y + z >= 0 and x - y + z <= 100)):
            s.add(fun3(x, y, z))
        if ((x - y >= 0 and x - y <= 100)
                and (- y - z >= 0 and - y - z <= 100)
                and (x - z >= 0 and x - z <= 100)
                and (x - y - z >= 0 and x - y - z <= 100)):
            s.add(fun4(x, y, z))
    return s

def save_in_file(answers, answer_file, question_file):
    with open(answer_file, 'a') as f:
        # 每次输入前清空文件
        f.seek(0)
        f.truncate()

        cnt = 1
        for ans in answers:
            text = str(cnt) + ")  " + ans + '\n'
            f.write(text)
            cnt += 1

    with open(question_file, 'a') as f:
        f.seek(0)
        f.truncate()

        cnt = 1
        for ans in answers:
            ques = str(cnt) + ")  " + ans[: ans.find('=') + 1] + "\n"
            f.write(ques)
            cnt += 1


save_in_file(generate(1000), 
"C:\\Users\\sibyl\\Desktop\\calculation\\answer.txt", 
"C:\\Users\\sibyl\\Desktop\\calculation\\question.txt")

五、结果

生成的txt文件:

Python趣味挑战之给幼儿园弟弟生成1000道算术题Python趣味挑战之给幼儿园弟弟生成1000道算术题

排版后的word文档:

Python趣味挑战之给幼儿园弟弟生成1000道算术题
Python趣味挑战之给幼儿园弟弟生成1000道算术题

到此这篇关于Python趣味挑战之给幼儿园弟弟生成1000道算术题的文章就介绍到这了,更多相关Python生成算术题内容请搜索三水点靠木以前的文章或继续浏览下面的相关文章希望大家以后多多支持三水点靠木!

Python 相关文章推荐
python django集成cas验证系统
Jul 14 Python
Python数据类型详解(三)元祖:tuple
May 08 Python
Python将图片批量从png格式转换至WebP格式
Aug 22 Python
Python学习思维导图(必看篇)
Jun 26 Python
Python爬取商家联系电话以及各种数据的方法
Nov 10 Python
Django基础三之视图函数的使用方法
Jul 18 Python
Python提取PDF内容的方法(文本、图像、线条等)
Sep 25 Python
pygame编写音乐播放器的实现代码示例
Nov 19 Python
pytorch实现对输入超过三通道的数据进行训练
Jan 15 Python
如何使用 Python 读取文件和照片的创建日期
Sep 05 Python
Django前后端分离csrf token获取方式
Dec 25 Python
【超详细】八大排序算法的各项比较以及各自特点
Mar 31 Python
解决Python中的modf()函数取小数部分不准确问题
May 28 #Python
利用Python+OpenCV三步去除水印
python实现自定义日志的具体方法
May 28 #Python
python 爬取京东指定商品评论并进行情感分析
python b站视频下载的五种版本
May 27 #Python
教你怎么用python selenium实现自动化测试
Python Django框架介绍之模板标签及模板的继承
May 27 #Python
You might like
用php过滤危险html代码的函数
2008/07/22 PHP
PHP各种常见经典算法总结【排序、查找、翻转等】
2019/08/05 PHP
laravel5.6 框架邮件队列database驱动简单demo示例
2020/01/26 PHP
JS将秒换成时分秒实现代码
2013/09/03 Javascript
jQuery实现HTML5 placeholder效果实例
2014/12/09 Javascript
Spring Boot+AngularJS+BootStrap实现进度条示例代码
2017/03/02 Javascript
Angular.JS去掉访问路径URL中的#号详解
2017/03/30 Javascript
vue组件之间的数据传递方法详解
2019/04/19 Javascript
element-ui表格合并span-method的实现方法
2019/05/21 Javascript
Vue.js实现大屏数字滚动翻转效果
2019/11/29 Javascript
iview实现动态表单和自定义验证时间段重叠
2021/01/10 Javascript
windows下python模拟鼠标点击和键盘输示例
2014/02/28 Python
Python自动发邮件脚本
2017/03/31 Python
分析python切片原理和方法
2017/12/19 Python
Python图形绘制操作之正弦曲线实现方法分析
2017/12/25 Python
pycharm 在windows上编辑代码用linux执行配置的方法
2018/10/27 Python
用Python写一个模拟qq聊天小程序的代码实例
2019/03/06 Python
详解Python 解压缩文件
2019/04/09 Python
python调用webservice接口的实现
2019/07/12 Python
python实现大文本文件分割
2019/07/22 Python
django中使用Celery 布式任务队列过程详解
2019/07/29 Python
Django框架安装方法图文详解
2019/11/04 Python
Python装饰器结合递归原理解析
2020/07/02 Python
Python Process创建进程的2种方法详解
2021/01/25 Python
Bootstrap 学习分享
2012/11/12 HTML / CSS
HTML5 Canvas渐进填充与透明实现图像的Mask效果
2013/07/11 HTML / CSS
缅甸网上购物:Shop.com.mm
2017/12/05 全球购物
Herschel美国官网:背包、手提袋及配件
2020/03/10 全球购物
数据员岗位职责
2013/11/19 职场文书
乡镇庆八一活动方案
2014/02/02 职场文书
母亲节感恩寄语
2014/02/21 职场文书
医院领导班子查摆问题对照检查材料思想汇报
2014/10/08 职场文书
幼儿教师小班个人总结
2015/02/05 职场文书
大学生简历自我评价2015
2015/03/03 职场文书
2016大学生求职自荐信范文
2016/01/28 职场文书
Redis之RedisTemplate配置方式(序列和反序列化)
2022/03/13 Redis