VOOZH about

URL: https://www.geeksforgeeks.org/python/python-math-floor-function/

⇱ Python | math.floor() function - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Python | math.floor() function

Last Updated : 16 Feb, 2023

In Python, math module contains a number of mathematical operations, which can be performed with ease using the module. math.floor() function returns the largest integer not greater than x. If number is already integer, same number is returned.

Syntax: math.floor(x)

Parameter:
x: This is a numeric expression.
Returns: largest integer not greater than x.
Time Complexity: O(1)
Auxiliary Space: O(1)

Code #1: 

Output:
The floor of 33.7 is : 33

  Code #2: 

Output:
math.floor(-13.1) : -14
math.floor(101.96) : 101
Comment
Article Tags: