Python判断Abundant Number的方法
作者:小卒过河 时间:2023-10-30 02:25:30
本文实例讲述了Python判断Abundant Number的方法。分享给大家供大家参考。具体如下:
Abundant Number,中文译成:盈数(又称 丰数, 过剩数abundant number)是一种特殊的 自然数,除去它本身以外的一切正约数的和大于它本身。
介绍见百度百科: http://baike.baidu.com/view/1596350.htm
#Checks if a number is abundant or not
#An abundant number is the number of which sum of
#factors(including itself) is greater than twice the number
def abundant(n):
sum_factors=0
for i in range(1,n+1):
if n%i==0:
#finds out the factors
f=i
sum_factors += f
if sum_factors>2*n:
#condition for abundant number
print "This is an Abundant Number!"
else:
print "This is not an Abundant Number!"
希望本文所述对大家的Python程序设计有所帮助。
标签:Python,判断
0
投稿
猜你喜欢
python读取图片任意范围区域
2023-07-16 06:26:21
python数据结构leetcode338比特位计数算法
2023-05-06 21:24:33
如何把数据从SQL Server导出到Access或Excel中去?
2009-11-02 20:26:00
Python Flask微信小程序登录流程及登录api实现代码
2022-03-21 14:33:47
js游戏 俄罗斯方块 源代码
2008-01-24 13:14:00
Python tornado队列示例-一个并发web爬虫代码分享
2022-03-13 12:13:55
Python中性能分析利器pyinstrument详细讲解
2021-02-15 10:46:51
Nuxt3+ElementPlus构建打包部署全过程
2023-07-02 16:28:51
python不同系统中打开方法
2021-04-03 20:40:48
PHP OPP机制和模式简介(抽象类、接口和契约式编程)
2023-11-21 10:53:53
在MySQL中使用子查询和标量子查询的基本操作教程
2024-01-15 15:00:08
Python统计序列和文件中元素的频度
2021-02-03 15:03:43
Clion ROS开发环境设置技巧
2023-11-01 02:36:32
Javascript中作用域的详细介绍
2024-04-18 10:02:09
详细讲解SQL Server数据库的文件恢复技术
2009-01-15 12:54:00
简单了解python协程的相关知识
2021-04-12 19:37:54
Python常用的日期时间处理方法示例
2023-07-30 04:31:05
Golang import 导入包语法及一些特殊用法详解
2024-02-02 08:28:30
python实现任意位置文件分割的实例
2021-01-17 18:18:22
Python实现的文本简单可逆加密算法示例
2023-06-05 07:35:11