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生成随机数的方法
Jan 14 Python
python使用三角迭代计算圆周率PI的方法
Mar 20 Python
Django中几种重定向方法
Apr 28 Python
Python优化技巧之利用ctypes提高执行速度
Sep 11 Python
python虚拟环境virtualenv的使用教程
Oct 20 Python
用Python实现筛选文件脚本的方法
Oct 27 Python
python实现AES和RSA加解密的方法
Mar 28 Python
pytorch-RNN进行回归曲线预测方式
Jan 14 Python
使用python+poco+夜神模拟器进行自动化测试实例
Apr 23 Python
浅析python 动态库m.so.1.0错误问题
May 09 Python
Keras预训练的ImageNet模型实现分类操作
Jul 07 Python
python中关于数据类型的学习笔记
Jul 19 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
建立动态的WML站点(三)
2006/10/09 PHP
采用PHP函数memory_get_usage获取PHP内存清耗量的方法
2011/12/06 PHP
PHP zip扩展Linux下安装过程分享
2014/05/05 PHP
PHP登录环节防止sql注入的方法浅析
2014/06/30 PHP
WordPress主题制作中自定义头部的相关PHP函数解析
2016/01/08 PHP
ThinkPHP框架里隐藏index.php
2016/04/12 PHP
ThinkPHP中create()方法自动验证表单信息
2017/04/28 PHP
jquery 1.4.2发布!主要是性能与API
2010/02/25 Javascript
js动态设置div的值下例子
2013/10/29 Javascript
根据身份证号自动输出相关信息(籍贯,出身日期,性别)
2013/11/15 Javascript
jQuery倒计时代码(超简单)
2017/02/27 Javascript
详解vue-cli开发环境跨域问题解决方案
2017/06/06 Javascript
微信小程序 开发MAP(地图)实例详解
2017/06/27 Javascript
JavaScript的setter与getter方法
2017/11/29 Javascript
JS如何获取地址栏的参数实例讲解
2018/10/06 Javascript
详解微信小程序文件下载--视频和图片
2019/04/24 Javascript
搭建一个nodejs脚手架的方法步骤
2019/06/28 NodeJs
python线程池的实现实例
2013/11/18 Python
python字符串替换的2种方法
2014/11/30 Python
关于python pyqt5安装失败问题的解决方法
2017/08/08 Python
Python3列表List入门知识附实例
2020/02/09 Python
python判断变量是否为int、字符串、列表、元组、字典的方法详解
2020/02/13 Python
django-利用session机制实现唯一登录的例子
2020/03/16 Python
Pycharm安装第三方库失败解决方案
2020/11/17 Python
css3模拟jq点击事件的实例代码
2017/07/06 HTML / CSS
详解如何解决canvas图片getImageData,toDataURL跨域问题
2018/09/17 HTML / CSS
美国百货齐全的精品网站,提供美式风格的产品:Overstock.com
2016/07/22 全球购物
TALLY WEiJL法国网上商店:服装、时装及配饰
2019/08/31 全球购物
大学生职业规划前言模板
2013/12/27 职场文书
计算机数据库专业职业生涯规划书
2014/02/08 职场文书
论群众路线学习心得体会
2014/10/31 职场文书
2015年感恩节演讲稿(优选篇)
2015/03/20 职场文书
2015学校年度工作总结
2015/05/11 职场文书
孩子满月酒答谢词
2015/09/30 职场文书
高中数学教学反思范文
2016/02/18 职场文书
忘记Grafana不要紧2种Grafana重置admin密码方法详细步骤
2022/04/07 Servers