codecamp

Python3 math.lcm()方法 -求最小公倍数

Python math 模块 math 模块


描述

返回给定的整数参数的最小公倍数。 

如果所有参数均非零,则返回值将是为所有参数的整数倍的最小正整数。

 如果参数之一为零,则返回值为 0。 

不带参数的 lcm() 返回 1

本函数要求最低版本为Python 3.9

语法

math.lcm() 方法语法如下:

math.lcm(*integers)

参数说明:

  • integers -- 必需,数字。如果 x 不是一个数字,返回 TypeError。

 *表示可以传递多个integers参数


返回值

返回一个整数 int,表示两个或多个整数的最小公倍数(LCM)。


实例

以下实例返回数字的最小公倍数:

#导入math模块
import math
#输出最小公倍数
print (math.lcm(3, 6))
print (math.lcm(11, 12))
print (math.lcm(0, 36))
print (math.lcm(-12, -36))
print (math.lcm(5, 12,60))
print (math.lcm(12,13,14,15))

输出结果:

6
132
0
36
60
5460

Python math 模块 math 模块


Python3 math.ulp()方法 - 求浮点数的最小有效比特位
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

相关教程

Python基础教程

python内置库

python3 math模块

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }