當前位置:首頁 » 編程語言 » pythonmathsqrt

pythonmathsqrt

發布時間: 2023-04-10 10:14:29

⑴ 為什麼python中使用math中的sqrt模塊沒有輸出結果

答: 是這樣的呢,你自己再看一下你的代碼,相當於你只是調用了開二次方的這個函數,確實會得到一個運算結果,但是你並沒有把它顯示出來呢。所以你應該在你的第2行語句下面加一行列印語句print。然後將整個第2行放在print函數裡面。

希望對你有幫助~

⑵ python要使用平方根函數sqrt,需要導入( )庫

可以使用math庫

import matha = 4print math.sqrt(4) # 2

也可以直接利用python的**運算符

a = 8a**(1/3) # 開3次方相當於1/3次乘方 結果是2 math中其他常用的數學函數:ceil(x) 取頂floor(x) 取底fabs(x) 取絕對值factorial (x) 階乘hypot(x,y) sqrt(x*x+y*y)pow(x,y) x的y次方sqrt(x) 開平方log(x)log10(x)trunc(x) 截斷取整數部分isnan (x) 判斷是否NaN(not a number)degree (x) 弧度轉角度radians(x) 角度轉弧度

⑶ python中如何進行開方運算

1、python中使用pow函數求n的n方根。首先打開python的編輯器,新建一個python 3的文件:

⑷ python根號怎麼寫

1、代碼

import math


a = math.sqrt(4)

print(a)


2、結果

2


3、說明

python根號是使用math模塊中的sqrt()

⑸ Python--math庫

        Python math 庫提供許多對浮點數的數學運算函數,math模塊不支持復數運算,若需計算復數,可使用cmath模塊(本文不贅述)。

使用dir函數,查看math庫中包含的所有內容:

1) math.pi    # 圓周率π

2) math.e    #自然對數底數

3) math.inf    #正無窮大∞,-math.inf    #負無窮大-∞

4) math.nan    #非浮點數標記,NaN(not a number)

1) math.fabs(x)    #表示X值的絕對值

2) math.fmod(x,y)    #表示x/y的余數,結果為浮點數

3) math.fsum([x,y,z])    #對櫻歲如括弧內每個元素求和,其值為浮點數

4) math.ceil(x)    #向上取整,返回不小於x的最小整數

5)math.floor(x)    #向下取整,返回不大於x的最大整數

6) math.factorial(x)    #表示X的階乘,其中X值必須為整型,否則報錯

7) math.gcd(a,b)    #表示a,b的最大公約數

8)  math.frexp(x)      #x = i *2^j,返回(i,j)

9) math.ldexp(x,i)    #返回x*2^i的運算值,為math.frexp(x)函數的反運算

10) math.modf(x)    #表示x的小數和整數部分

11) math.trunc(x)    #表示x值的整數部分

12) math.sign(x,y)    #表示用數值y的正負號,替換x值的正負號

13) math.isclose(a,b,rel_tol =x,abs_tol = y)    #表示a,b的相似性,真值返回True,否則False;rel_tol是相對公差:雀慶表示a,b之間允許的最大差值,abs_tol是最小絕對公差,對比較接近於0有用,abs_tol必須至少為0。

14) math.isfinite(x)    #表示當x不為無窮大時,返回True,否則返回脊啟False

15) math.isinf(x)    #當x為±∞時,返回True,否則返回False

16) math.isnan(x)    #當x是NaN,返回True,否則返回False

1) math.pow(x,y)    #表示x的y次冪

2) math.exp(x)    #表示e的x次冪

3) math.expm1(x)    #表示e的x次冪減1

4) math.sqrt(x)    #表示x的平方根

5) math.log(x,base)    #表示x的對數值,僅輸入x值時,表示ln(x)函數

6) math.log1p(x)    #表示1+x的自然對數值

7) math.log2(x)    #表示以2為底的x對數值

8) math.log10(x)    #表示以10為底的x的對數值

1) math.degrees(x)    #表示弧度值轉角度值

2) math.radians(x)    #表示角度值轉弧度值

3) math.hypot(x,y)    #表示(x,y)坐標到原點(0,0)的距離

4) math.sin(x)    #表示x的正弦函數值

5) math.cos(x)    #表示x的餘弦函數值

6) math.tan(x)    #表示x的正切函數值

7)math.asin(x)    #表示x的反正弦函數值

8) math.acos(x)    #表示x的反餘弦函數值

9) math.atan(x)    #表示x的反正切函數值

10) math.atan2(y,x)    #表示y/x的反正切函數值

11) math.sinh(x)    #表示x的雙曲正弦函數值

12) math.cosh(x)    #表示x的雙曲餘弦函數值

13) math.tanh(x)    #表示x的雙曲正切函數值

14) math.asinh(x)    #表示x的反雙曲正弦函數值

15) math.acosh(x)    #表示x的反雙曲餘弦函數值

16) math.atanh(x)    #表示x的反雙曲正切函數值

1)math.erf(x)    #高斯誤差函數

2) math.erfc(x)    #余補高斯誤差函數

3) math.gamma(x)    #伽馬函數(歐拉第二積分函數)

4) math.lgamma(x)    #伽馬函數的自然對數

⑹ python如何求平方根

while True: a=float(input('請輸入實數:'))

def power(x):

return x*x print(a,'^2=',power(a))

b=int(input('是否要繼續計算,是,請輸入1,否,請輸入0: '))

if b==0: print('已退出計算器')

break

else:

continue

(6)pythonmathsqrt擴展閱讀:

使用Python完成,輸入兩個數,得到加減乘除余結果的功能,其中結果輸出使用不同的格式。

1. 定義兩個變數a,b,使用鍵盤輸入的方式。python的2.x版本中鍵盤輸入有兩種方式可以實現:raw_input(),input(),在3.X版本中兩者合並為一個,只支持input().

2. 輸出結果:

(1) 輸出string型的結果

[python] view plain print?

  • <codeclass="language-python">print("A+B=%s"%(a+b))#outputstring</code>

  • print("A+B = %s"%(a+b)) # output string


  • (2) 輸出int型的結果:默認格式,佔位符格式,填充佔位符格式,靠左格式

  • [python] view plain print?

  • <codeclass="language-python">print("A-B=%d"%(a-b))#outputint

  • print("A-B=%4d"%(a-b))

  • print("A-B=%04d"%(a-b))

  • print("A-B=%-4d"%(a-b))</code>

  • print("A-B = %d"%(a-b)) # output intprint("A-B = %4d"%(a-b))print("A-B = %04d"%(a-b))print("A-B = %-4d"%(a-b))


  • 結果:a=7,b=3

  • A-B = 4A-B = 4A-B = 0004A-B = 4

    (3) 輸出為浮點數類型:默認格式,限制小數位數格式,佔位符及限制小數位數格式

  • print("A*B = %f"%(a*b)) # output floatprint("A/B = %.2f"%(a/b)) # output float of two decimal placesprint("A/B = %05.2f"%(a/b)) # output float of two decimal places


  • 結果:a=7,b=3



  • A*B = 21.000000


  • A/B = 2.33

  • 3. 全部實現,開發工具為pycharm


    # calculatea = int(input("Please input number A:"))b = int(input("Please input number B:"))print("A+B = %s"%(a+b)) # output stringprint("A-B = %d"%(a-b)) # output intprint("A*B = %f"%(a*b)) # output floatprint("A/B = %.2f"%(a/b)) # output float of two decimal placesprint("A%B"+" = %06d"%(a%b)) # output int of 6 bit placeholder filled with 0print("A與B和是%s,差是%d,乘積是%02.2f,商是%-4.2f,余數是%03d"%(a+b,a-b,a*b,a/b,a%b))


熱點內容
android文本框居中 發布:2024-11-02 08:21:55 瀏覽:439
撕裂者哪個配置好 發布:2024-11-02 07:58:49 瀏覽:990
c編寫的程序經過編譯 發布:2024-11-02 07:41:18 瀏覽:941
mc伺服器靈魂綁定如何出售 發布:2024-11-02 07:39:36 瀏覽:583
cf伺服器不同如何一起玩游戲 發布:2024-11-02 07:38:24 瀏覽:945
手機壓縮游戲 發布:2024-11-02 07:27:03 瀏覽:451
c語言的四書五經 發布:2024-11-02 07:21:42 瀏覽:742
vbaexcel資料庫 發布:2024-11-02 07:16:09 瀏覽:11
java線程的sleep 發布:2024-11-02 07:15:18 瀏覽:845
手機緩存清理器 發布:2024-11-02 07:07:03 瀏覽:312