abs関数
abs関数は絶対値を取得する関数です。引数には整数、実数の他、複素数も可能です。
(例) print abs(-1) print abs(5) print abs(1+1j)
(実行結果)
1
5
1.41421356237
ホーム