python內建函數1-abs()

來源:互聯網
上載者:User

標籤:python   number   function   absolute   complex   

Help on built-in function abs in module __builtin__:


abs(...)

    abs(number) -> number

    

    Return the absolute value of the argument.

abs(x)

Return the absolute value of a number. The argument may be a plain or long integer or a floating point number. If the argument is a complex number, its magnitude is returned.


說明:

  1. 返回數位絕對值,參數可以是整數、浮點數或者複數

 2. 如果參數是一個複數,此方法返回此複數的絕對值(此複數與它的共軛複數的乘積的平方根)


>>> abs(5)

5

>>> abs(-3)

3

>>> abs(0)

0

>>> abs(7.1415)

7.1415

>>> abs(-7.1415)

7.1415

>>> a=complex(3,4)

>>> a

(3+4j)

>>> abs(a)

5.0

>>> b=complex(-2,-8)

>>> b

(-2-8j)

>>> abs(b)

8.246211251235321



本文出自 “大雲技術” 部落格,請務必保留此出處http://hdlptz.blog.51cto.com/12553181/1897524

python內建函數1-abs()

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.