2020-09-14

python3 如何对一个数进行开方(3种方法)

#来源#python3 如何对一个数进行开方(3种方法)

1、使用math模块开方

import math
math.sqrt(144) 

2、使用内置函数pow,可开多次方

pow(144, 1/3) #1/3,1/4,n/m...

3、使用数学表达式

144**(1/2)#1/3,1/4,n/m...

直角三角形斜边长计算

def Pythagorean_theorem(a,b):
    hypotenuse_length = (a**2+b**2)**(1/2)
    return 'The right triangle\'s third side\'s length is {}'.format(hypotenuse_length)
print(Pythagorean_theorem(3,4))
import  math
def  hypotenuse(a,b):
    return(math.sqrt(a**2+b**2))
side1 = int(input("第一条直角边:"))
side2 = int(input("第二条直角边:"))
print("你要计算的直角三角形边斜边长度为:{}".format(int(hypotenuse(side1,side2))))

你可能感兴趣的:(2020-09-14)