Introduction to the Floor () method in Python

Source: Internet
Author: User
Tags in python

This article mainly introduces the floor () method in Python, is the basic knowledge of Python introduction, the need for friends can refer to the

The floor () method returns the largest integer not greater than X (rounding down).

  Grammar

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

?

1

2

3import Math

Math.floor (x)

Note: This function is not directly accessible, so we need to import the math module, and then we need to 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 not greater than X.

Example

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

?

1

2

3

4

5

6

7

8#!/usr/bin/python

Import Math # This would 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)

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

?

1

2

3

4

5math.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

Related Article

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.