codecamp

Python3 math.isqrt() 方法 -求平方根的整数值

Python math 模块 math 模块


描述

 math.isqrt(x) 方法返回 x 的平方根,并将平方根数向下舍入到最接近的整数。

数字必须大于等于 0。

该函数要求python的最低版本为Python 3.8!


语法

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

math.isqrt(x)

参数说明:

  • x -- 必需,数字。如果 x 不是一个数字,返回 TypeError。如果数字小于 0,则返回 ValueError。

返回值

返回一个整数 int,表示一个数的平方根,并将平方根数向下舍入到最接近的整数。


实例

以下实例返回数字的平方根,并将平方根数向下舍入到最接近的整数:

# 导入 math 包
import math

# 输出平方根
# Print the square root of different numbers
print (math.sqrt(10))
print (math.sqrt (12))
print (math.sqrt (68))
print (math.sqrt (100))

# 输出平方根,并将平方根数向下舍入到最接近的整数
print (math.isqrt(10))
print (math.isqrt (12))
print (math.isqrt (68))
print (math.isqrt (100))

输出结果:

3.1622776601683795
3.4641016151377544
8.246211251235321
10.0
3
3
8
10

Python math 模块 math 模块


Python3 math.isnan() 方法 -判断一个数是否是NAN
Python3 math.ldexp() 方法 - 求x乘2的i次方
温馨提示
下载编程狮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; }