Python实现1-9数组形成的结果为100的所有运算式的示例
作者:wkcagd 时间:2023-04-09 10:52:37
问题:
编写一个在1,2,…,9(顺序不能变)数字之间插入+或-或什么都不插入,使得计算结果总是100的程序,并输出所有的可能性。例如:1 + 2 + 34–5 + 67–8 + 9 = 100。
from functools import reduce
operator = {
1: '+',
2: '-',
0: ''
}
base = ['1', '2', '3', '4', '5', '6', '7', '8', '9']
def isHundred(num):
#转化为8位3进制数,得到运算符数组
arr = []
for index in range(8):
index = 7 - index
arr.append(num // (3 ** index))
num -= (num // (3 ** index)) * (3 ** index)
arr = map(lambda x: operator[x], arr)
#合并得到运算式
formula = reduce(lambda x, y: x + y, zip(base, arr))
formula = list(formula)
formula.append('9')
formula = ''.join(formula)
#计算运算式结果
res = eval(formula)
return res, formula
if __name__ == '__main__':
#所有可能的结果
total = 3 ** 8
for i in range(total):
res, formula = isHundred(i)
if res == 100:
print(formula+' = 100')
结果:
/usr/bin/python3.5 /home/kang/workspace/Qt3d/test.py
123+45-67+8-9 = 100
123+4-5+67-89 = 100
123-45-67+89 = 100
123-4-5-6-7+8-9 = 100
12+3+4+5-6-7+89 = 100
12+3-4+5+67+8+9 = 100
12-3-4+5-6+7+89 = 100
1+23-4+56+7+8+9 = 100
1+23-4+5+6+78-9 = 100
1+2+34-5+67-8+9 = 100
1+2+3-4+5+6+78+9 = 100
来源:http://www.cnblogs.com/wkcagd/archive/2017/11/02/7775102.html
标签:Python,数组,100,运算式
0
投稿
猜你喜欢
mySQL中replace的用法
2024-01-27 13:42:07
详解基于pycharm的requests库使用教程
2023-08-12 09:40:39
python读取xml文件方法解析
2021-04-25 03:53:45
python实现音乐下载的统计
2021-07-07 20:08:54
python http接口自动化脚本详解
2022-09-01 05:24:30
MySQL的存储函数与存储过程相关概念与具体实例详解
2024-01-19 05:50:32
如何在Django中使用聚合的实现示例
2021-08-02 10:32:30
不用Global.asa也能实现统计在线人数吗?
2009-10-29 12:28:00
Python使用minidom读写xml的方法
2022-03-14 11:35:22
Mysql 主从数据库同步(centos篇)
2024-01-18 10:43:44
如何使用ChatGPT搭建AI网站
2023-09-27 15:45:17
Python发送form-data请求及拼接form-data内容的方法
2022-11-14 09:55:15
Python使用邻接矩阵实现图及Dijkstra算法问题
2022-09-30 01:22:00
Python使用openpyxl模块处理Excel文件
2021-10-03 06:45:10
Python回文字符串及回文数字判定功能示例
2022-05-09 21:59:30
人工智能学习Pytorch张量数据类型示例详解
2021-09-13 01:33:08
利用python为PostgreSQL的表自动添加分区
2023-07-07 14:44:58
Python3安装模块报错Microsoft Visual C++ 14.0 is required的解决方法
2021-02-14 00:18:22
django的分页器Paginator 从django中导入类
2022-02-07 04:24:29
python3 通过 pybind11 使用Eigen加速代码的步骤详解
2023-05-13 21:53:18