2023-06-11 Python - math.inf:無限大 Python3 mathモジュール 概要 インポート 実行結果 無限大 作成 型変換 概要 無限大を表すfloat型 flot('inf')と同一。 mathモジュール インポート import math 実行結果 無限大 作成 # 正の無限大 float(math.inf) # 負の無限大 -float(math.inf) 型変換 str型のみ可能 str(float(math.inf))