codecamp

Python3 math.gcd() 方法 - 求最大公约数

Python math 模块 math 模块


描述

math.gcd() 方法返回给定的整数参数的最大公约数。

gcd(0,0) 返回 0。

本函数要求最低版本为Python 3.5
在 3.9 版更改: 添加了对任意数量的参数的支持,之前的版本只支持两个参数。

语法

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

math.gcd(*integers)

参数说明:

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

 在python3.9之前,只能传入两个参数,python3.9之后可以传入多个参数


返回值

返回一个整数 int,表示两个或多个整数的最大公约数 (GCD)。


实例

以下实例返回数字的最大公约数:

# 导入 math 包
import math

# 输出最大公约数
print (math.gcd(3, 6))
print (math.gcd(6, 12))
print (math.gcd(12, 36))
print (math.gcd(-12, -36))
print (math.gcd(5, 12))
print (math.gcd(10, 0))
print (math.gcd(0, 34))
print (math.gcd(0, 0))

输出结果:

3
6
12
12
1
10
34
0

Python math 模块 math 模块


Python3 math.gamma() 方法 -求伽马函数值
Python3 math.hypot() 方法 - 求欧几里得范数
温馨提示
下载编程狮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; }