萬盛學電腦網

 萬盛學電腦網 >> 網絡編程 >> 編程語言綜合 >> Python中的ceil()方法使用教程

Python中的ceil()方法使用教程

   這篇文章主要介紹了Python中的ceil()方法使用教程,是Python入門中必會的方法之一,需要的朋友可以參考下

  ceil()方法返回x的值上限 - 不小於x的最小整數。

  語法

  以下是ceil()方法的語法:

  ?

1 2 3 import math   math.ceil( x )

  注意:此函數是無法直接訪問的,所以我們需要導入math模塊,然後需要用math的靜態對象來調用這個函數。

  參數

  x -- 這是一個數值表達式。

  返回值

  此方法返回不小於x的最小整數。

  示例

  下面的例子顯示了ceil()方法的使用。

  ?

1 2 3 4 5 6 7 8 #!/usr/bin/python import math # This will import math module   print "math.ceil(-45.17) : ", math.ceil(-45.17) print "math.ceil(100.12) : ", math.ceil(100.12) print "math.ceil(100.72) : ", math.ceil(100.72) print "math.ceil(119L) : ", math.ceil(119L) print "math.ceil(math.pi) : ", math.ceil(math.pi)

  當我們運行上面的程序,它會產生以下結果:

  ?

1 2 3 4 5 math.ceil(-45.17) : -45.0 math.ceil(100.12) : 101.0 math.ceil(100.72) : 101.0 math.ceil(119L) : 119.0 math.ceil(math.pi) : 4.0
copyright © 萬盛學電腦網 all rights reserved