• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    Python趣味挑战之给幼儿园弟弟生成1000道算术题

    一、前言

    阿姨花了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文件:

    排版后的word文档:


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

    您可能感兴趣的文章:
    • 使用python批量生成insert语句的方法
    • python基础学习之生成器与文件系统知识总结
    • python生成器generator:深度学习读取batch图片的操作
    • 教你怎么用Python生成九宫格照片
    • Python如何生成随机高斯模糊图片详解
    • python使用ProjectQ生成量子算法指令集
    • 教你使用Python根据模板批量生成docx文档
    • Python实现K-means聚类算法并可视化生成动图步骤详解
    • python基于opencv批量生成验证码的示例
    • 用python自动生成日历
    上一篇:解决Python中的modf()函数取小数部分不准确问题
    下一篇:Flask搭建一个API服务器的步骤
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

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