亚洲一区亚洲二区亚洲三区,国产成人高清在线,久久久精品成人免费看,999久久久免费精品国产牛牛,青草视频在线观看完整版,狠狠夜色午夜久久综合热91,日韩精品视频在线免费观看

Python中的hypot()方法使用簡介 -電腦資料

電腦資料 時間:2019-01-01 我要投稿
【www.ishadingyu.com - 電腦資料】

    這篇文章主要介紹了Python中的hypot()方法使用簡介,是Python入門所需掌握的基礎(chǔ)知識,需要的朋友可以參考下

    hypot()方法返回的歐幾里德范數(shù) sqrt(x*x + y*y).

    語法

    以下是hypot()方法的語法:

   

hypot(x, y)

    注意:此函數(shù)是無法直接訪問的,所以我們需要導(dǎo)入math模塊,然后需要用math的靜態(tài)對象來調(diào)用這個函數(shù)

    參數(shù)

x -- 這必須是一個數(shù)值

y -- 此方法返回歐幾里德范數(shù) sqrt(x*x + y*y)

    返回值

    此方法返回歐幾里德范數(shù) sqrt(x*x + y*y)

    例子

    下面的例子顯示 hypot()方法的使用,

Python中的hypot()方法使用簡介

,

電腦資料

Python中的hypot()方法使用簡介》(http://www.ishadingyu.com)。

   

#!/usr/bin/pythonimport mathprint "hypot(3, 2) : ", math.hypot(3, 2)print "hypot(-3, 3) : ", math.hypot(-3, 3)print "hypot(0, 2) : ", math.hypot(0, 2)

    當我們運行上面的程序,它會產(chǎn)生以下結(jié)果:

   

hypot(3, 2) : 3.60555127546hypot(-3, 3) : 4.24264068712hypot(0, 2) : 2.0

最新文章