1. 程式人生 > >python-數字運算

python-數字運算

先貼出參考資料地址:http://www.runoob.com/python3/python3-number.html


Python math 模組、cmath 模組

Python 中數學運算常用的函式基本都在 math 模組、cmath 模組中。

Python math 模組提供了許多對浮點數的數學運算函式。

Python cmath 模組包含了一些用於複數運算的函式。

cmath 模組的函式跟 math 模組函式基本一致,區別是 cmath 模組運算的是複數,math 模組運算的是數學運算。

要使用 math 或 cmath 函式必須先匯入: