Python Floor() は、数値の切り捨てられた整数を返します。
次は、floor() メソッドの構文です:
import math math.floor( x )
注: Floor() には直接アクセスできません。数学モジュールをインポートして呼び出す必要があります。静的オブジェクトを介したメソッド。
パラメータ
#xx -- 数値式。 戻り値数値の丸められた整数を返します。 次に、floor() メソッドの使用例を示します。#!/usr/bin/python import math # This will import math module print "math.floor(-45.17) : ", math.floor(-45.17) print "math.floor(100.12) : ", math.floor(100.12) print "math.floor(100.72) : ", math.floor(100.72) print "math.floor(119L) : ", math.floor(119L) print "math.floor(math.pi) : ", math.floor(math.pi)上記の例を実行した後の出力結果は次のとおりです。
math.floor(-45.17) : -46.0 math.floor(100.12) : 100.0 math.floor(100.72) : 100.0 math.floor(119L) : 119.0 math.floor(math.pi) : 3.0関連する推奨事項: "
Python チュートリアル》
以上がPythonでフロアを使用する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。