数値型

組み込み型
  • int整数
  • float浮動小数点数
  • complex複素数

公式サイト:

数値型 | Python 3.x ドキュメント [公式]

整数の最大値

ドキュメント:

sys.maxsize | Python 3.x ドキュメント [公式]

参考:

int 型に最大値はない/上限なし | note.nkmk.me

What are the currently possible values for sys.maxsize? – Stack Overflow

無限大

無限大を代入する。

x = float("inf")Code language: Python (python)

負の無限大を代入する。

x = float("-inf")Code language: Python (python)

参考:

nan / inf – 非数と無限大 | Python 数値計算入門

非数

非数を代入する。

result = math.nanCode language: Python (python)

非数を判定する。

if math.isnan(x):
    print('x is not a number.')Code language: Python (python)

参考:

nan / inf – 非数と無限大 | Python 数値計算入門

実数計算の精度/誤差

ドキュメント:

浮動小数点演算、その問題と制限 | Python 3.x ドキュメント [公式]

記事をシェアする:
タグ:

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です

Protected by reCAPTCHA