主頁 > 知識庫 > Python sqrt()函數(shù)用法說明

Python sqrt()函數(shù)用法說明

熱門標簽:鄭州智能外呼系統(tǒng)中心 crm電銷機器人 汕頭電商外呼系統(tǒng)供應(yīng)商 南京crm外呼系統(tǒng)排名 賓館能在百度地圖標注嗎 400電話 申請 條件 云南地圖標注 電銷機器人 金倫通信 北京外呼電銷機器人招商

1、開平方

函數(shù) sqrt() 返回 x 的平方根(x > 0)

語法:

import math
math.sqrt( x )

注意:此函數(shù)不可直接訪問,需要導(dǎo)入math模塊,然后需要使用math靜態(tài)對象調(diào)用此函數(shù)。

參數(shù) x -- 數(shù)值表達式

返回結(jié)果是浮點數(shù)。

import math # This will import math module 
print "math.sqrt(100) : ", math.sqrt(100)
print "math.sqrt(7) : ", math.sqrt(7)
print "math.sqrt(math.pi) : ", math.sqrt(math.pi)
 
# 輸出結(jié)果
math.sqrt(100) : 10.0 # 浮點
math.sqrt(7) : 2.64575131106
math.sqrt(math.pi) : 1.77245385091

實例1.

請利用filter()過濾出1~100中平方根是整數(shù)的數(shù),即結(jié)果應(yīng)該是:

[1, 4, 9, 16, 25, 36, 49, 64, 81, 100]

import math
 
def is_sqr(x):
 r = int(math.sqrt(x))
 return r * r == x
 
print filter(is_sqr, range(1, 101))

實例2.

def find_next_square(sq):
 import math
 n = math.sqrt(sq)
 if int(sq) == int(n) * int(n): #此處解決了(整數(shù)與浮點數(shù)的問題)
 return (int((n+1)*(n+1)))
 else:
 return -1
print(find_next_square(4.0))
 
#輸出結(jié)果

2、開n次方

利用pow(a, b)函數(shù)即可。需要開 a 的 r 次方則pow(a, 1.0/ r )。

補充:python中sqrt函數(shù)用法_sqrt是什么函數(shù)

sqrt是什么函數(shù)?

sqrt()是用于計算數(shù)字x的平方根的函數(shù)。

語法

以下是 sqrt() 方法的語法:import math

math.sqrt( x )

注意:sqrt()是不能直接訪問的,需要導(dǎo)入 math 模塊,通過靜態(tài)對象調(diào)用該方法。

參數(shù)

x -- 數(shù)值表達式。

返回值

返回數(shù)字x的平方根。

實例

以下展示了使用 sqrt() 方法的實例:

#!/usr/bin/python
import math # This will import math module
print "math.sqrt(100) : ", math.sqrt(100)
print "math.sqrt(7) : ", math.sqrt(7)
print "math.sqrt(math.pi) : ", math.sqrt(math.pi)

以上實例運行后輸出結(jié)果為:

math.sqrt(100) : 10.0
math.sqrt(7) : 2.64575131106
math.sqrt(math.pi) : 1.77245385091

以上為個人經(jīng)驗,希望能給大家一個參考,也希望大家多多支持腳本之家。如有錯誤或未考慮完全的地方,望不吝賜教。

您可能感興趣的文章:
  • Python中利用sqrt()方法進行平方根計算的教程
  • 基于python不同開根號的速度對比分析
  • Python開多次方根的案例
  • 基于python 開立方的注意事項說明

標簽:懷化 錫林郭勒盟 浙江 西寧 梅州 文山 昆明 石家莊

巨人網(wǎng)絡(luò)通訊聲明:本文標題《Python sqrt()函數(shù)用法說明》,本文關(guān)鍵詞  Python,sqrt,函數(shù),用法,說明,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《Python sqrt()函數(shù)用法說明》相關(guān)的同類信息!
  • 本頁收集關(guān)于Python sqrt()函數(shù)用法說明的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章