A brief introduction to the floor () method in Python

Source: Internet
Author: User
The floor () method returns the largest integer less than x (rounded down).
Grammar

The following is the syntax for the floor () method:

Import Mathmath.floor (x)

Note: This function is not directly accessible, so we need to import the math module and then call this function with the static object of math.
Parameters

  • X--This is a numeric expression.

return value

This method returns the largest integer that is less than X.
Example

The following example shows the use of the floor () method.

#!/usr/bin/pythonimport Math  # This would import math Moduleprint "Math.floor ( -45.17):", Math.floor ( -45.17) print "Ma Th.floor (100.12): ", Math.floor (100.12) print" Math.floor (100.72): ", Math.floor (100.72) print" Math.floor (119L): ", Mat H.floor (119L) print "Math.floor (Math.PI):", Math.floor (Math.PI)

When we run the above program, it produces the following results:

Math.floor ( -45.17): -46.0math.floor (100.12): 100.0math.floor (100.72): 100.0math.floor (119L): 119.0math.floor ( MATH.PI): 3.0
  • Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.