Wednesday, December 25, 2019

Python中求数字的平方根和平方的几种方法

https://blog.csdn.net/Jerry_1126/article/details/82917405
方法一: 使用内置模块

    >>> import math
    
    >>> math.pow(12, 2)     # 求平方
    144.0
    
    >>> math.sqrt(144)      # 求平方根
    12.0
    
    >>>

方法二: 使用表达式

    >>> 12 ** 2             # 求平方
    144
    
    >>> 144 ** 0.5          # 求平方根
    12.0
    
    >>>

方法三: 使用内置函数

    >>> pow(12, 2)          # 求平方
    144
    
    >>> pow(144, .5)        # 求平方根
    12.0
    

————————————————
版权声明:本文为CSDN博主「杰瑞26」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/Jerry_1126/article/details/82917405

No comments: