• Articles
  • Tutorials
  • Interview Questions

What is Floor Division in Python? With Examples

In this blog, we’ll discuss the concept of floor division. We’ll define what it is, provide examples to illustrate its usage, and discuss its advantages and disadvantages.

We will be discussing the following topics:

Check out this YouTube video to learn about Python:

What is Floor Division in Python?

What is Floor Division in Python?

Floor division, denoted by the double forward slash (//) operator, is a mathematical operation in Python that divides one number by another and rounds down to the nearest whole number. Unlike regular division (/), which returns a floating-point result, floor division returns an integer quotient.

For example, if you perform the operation 7 // 3, the result will be 2, as it rounds down the actual quotient, 2.33, to the nearest integer.

In simple terms, floor division gives you the largest whole number that can be obtained without exceeding the actual result of the division. This can be particularly useful in situations where you need whole numbers for accurate calculations or practical applications.

To learn this latest programming language, sign up for Intellipaat’s trending Python Course and become proficient in it!

Examples of Floor Division in Python

Let us now explore the various examples of floor division in Python to gain a better understanding of this operation.

Basic Floor Division

In this example, we’re using the floor division (//), a Python operator, to divide 5 by 3. Floor division always rounds down to the nearest whole number.

  • 5 is the dividend (the number being divided).
  • 3 is the divisor (the number by which we’re dividing).

The result of this operation is 1 because it’s the largest whole number that can be obtained without exceeding the actual result of the division (which is 1.66).

Example:

# Basic floor division
result1 = 5 // 3
print(result1) 

Output:

output

Floor Division with Negative Numbers

In this example, we’re using floor division with negative numbers. The operation -7 // 3 involves dividing -7 by 3.

  • -7 is the dividend (negative number being divided).
  • 3 is the divisor (positive number by which we’re dividing).

The result of this operation is -3. This may seem counterintuitive at first. The reason is that floor division always rounds towards negative infinity, meaning it always gives a result that is less than or equal to the actual division result. So even though mathematically -7/3 is -2.33, floor division in Python returns -3.

Example:

# Floor division with negative numbers
result2 = -7 // 3
print(result2)  

Output:

output

Finding the Number of Whole Hours in 150 Minutes

In this example, we’ll find out how many whole hours are in 150 minutes.

  • 150 represents the total number of minutes.
  • 60 represents the number of minutes in an hour (since there are 60 minutes in an hour).

The operation 150 // 60 divides 150 by 60 using floor division. The result is 2 because it’s the largest whole number that fits into 150 without going over.

Example:

# Finding the number of whole hours in 150 minutes
result3 = 150 // 60
print(result3)

Output:

output

Splitting 17 Items Evenly Among 5 Containers

In this example, we have 17 items that we want to distribute evenly among 5 containers. We’re using floor division (//) to calculate how many items each container will receive.

  • 17 represents the total number of items.
  • 5 represents the number of containers.

The expression 17 // 5 utilizes floor division to distribute 17 by 5. The output, which is 3, signifies the highest whole number that can be accommodated within 17 without exceeding it. Consequently, each container will be allocated 3 items, with 2 items remaining unallocated.

Example:

# Splitting 17 items evenly among 5 containers
items_per_container = 17 // 5
print(items_per_container) 

Output:

output

Want to know about the real-world uses of Python? Read our detailed blog on Python Applications now.

EPGC IITR iHUB

Calculating the Number of Full Years in 365 Days

In this example, we’re using floor division to calculate how many complete years are contained within 365 days.

  • 365 represents the total number of days.
  • 365 represents the number of days in a year.

The operation 365 // 365 divides 365 by 365 using floor division. The result is 1 because it’s the largest whole number that fits into 365 without going over. This elaborates that there is one full year within the given period of 365 days.

Example:

# Calculating the number of full years in 365 days
years = 365 // 365
print(years)

Output:

output

Dividing a Large Dataset into 3 Equal Parts

In this example, we have a large dataset consisting of 1000 data points, and we want to divide it into three equal parts. We use floor division (//) to calculate how many data points each part will contain.

  • total_data_points: 1000 data points in the dataset.
  • num_parts: 3, indicating that we want to divide the dataset into three equal parts.

The operation 1000 // 3 divides 1000 by 3 using floor division. The result is 333 because it’s the largest whole number that fits into 1000 without going over. This explains that each part will contain 333 data points.

Example:

# Dividing a large dataset into 3 equal parts
total_data_points = 1000
num_parts = 3
data_per_part = total_data_points // num_parts
print(data_per_part) 

Output:

output

Finding the Number of Whole Tiles in a 1024×768 Image

In this example, we’re working with an image that has a width of 1024 pixels and a height of 768 pixels. Additionally, we have tiles that are 32×32 pixels in size.

  • image_width: 1024 pixels
  • image_height: 768 pixels
  • tile_size: 32 pixels

We want to determine how many whole tiles can fit both horizontally and vertically within the image. The calculations, image_width // tile_size, and image_height // tile_size, use floor division to find the number of tiles that can fit in each direction.

For horizontal tiles,

  • 1024 // 32 gives 32, which is the largest whole number of tiles that fits within 1024 pixels.

For vertical tiles,

  • 768 // 32 gives 24, which is the largest whole number of tiles that fits within 768 pixels.

Example:

# Finding the number of whole tiles in a 1024x768 image
image_width = 1024
image_height = 768
tile_size = 32
num_horizontal_tiles = image_width // tile_size
num_vertical_tiles = image_height // tile_size
print(num_horizontal_tiles, num_vertical_tiles) 

Output:

output

Allocating Memory Evenly Among 4 Processes

In this example, we have a total of 16 gigabytes (GB) of memory, which is converted to bytes (16 * (1024**3)). We want to allocate this memory evenly among four processes.

  • total_memory: 16 GB in bytes.
  • num_processes: 4 processes.

Using floor division (//), we calculate how much memory each process will receive. The result, 4294967296 bytes (or approximately 4 GB), indicates that each process will receive roughly 4 gigabytes of memory.

Example:

# Allocating memory evenly among 4 processes
total_memory = 16 * (1024**3)  # 16 GB in bytes
num_processes = 4
memory_per_process = total_memory // num_processes
print(memory_per_process)

Output:

output

Calculating the Number of Whole Weeks in 365 Days

In this example, we’re using floor division to calculate how many whole weeks are contained within 365 days.

  • 365 represents the total number of days.
  • 7 represents the number of days in a week.

The operation 365 // 7 divides 365 by 7 using floor division. The result is 52 because it’s the largest whole number of weeks that fits within 365 days. This means that there are 52 full weeks within the given period of 365 days.

Example:

# Calculating the number of whole weeks in 365 days
weeks = 365 // 7
print(weeks)  # Output: 52

Output:

output

Determining the Number of Pages for 2500 Items with 20 Items Per Page

In this example, we have a total of 2500 items that need to be organized into pages, with each page containing 20 items.

  • total_items: 2500 items.
  • items_per_page: 20 items.

The operation 2500 // 20 divides 2500 by 20 using floor division. The result is 125 because it’s the largest whole number of pages that can be filled with 2500 items. This tries to explain that there will be a total of 125 pages, each containing 20 items.

Example:

# Determining the number of pages for 2500 items with 20 items per page
total_items = 2500
items_per_page = 20
total_pages = total_items // items_per_page
print(total_pages)  # Output: 125

Output:

output

Get 100% Hike!

Master Most in Demand Skills Now !

Learn the basics of Python from Python Fundamentals tutorial.

Pros of Floor Division in Python

Pros of Floor Division in Python

Floor division in Python has several advantages and use cases that make it a valuable tool in mathematical computations and programming logic. Here are some of the pros of floor division:

  • Integer Result: Floor division always returns an integer result. This is useful in scenarios where fractional values are not meaningful or applicable.
  • Predictable Behavior: Floor division always rounds towards negative infinity. This consistent behavior ensures that the result is always rounded down, which can be important in various applications.
  • Division without Remainder: Floor division provides the largest whole number that can be obtained without exceeding the actual result of the division. This is crucial when dealing with quantities that must be expressed in whole numbers.
  • Even Distribution: Floor division is commonly used for evenly distributing items, resources, or data points among a fixed number of containers or processes. This ensures a fair allocation.
  • Useful in Time Calculations: When dealing with time or duration calculations, floor division is used to determine the number of whole units (e.g., hours, days) within a given duration.
  • Integral Binning in Data Analysis: In data analysis, floor division is used to create bins with integer widths. This is important when grouping data into discrete intervals.

Cons of Floor Division in Python

Cons of Floor Division in Python

While floor division in Python is a valuable tool, it’s important to be aware of its limitations and potential drawbacks. Here are some of the cons of floor division:

  • Loss of Precision: Floor division can result in a loss of precision when dealing with non-integer values. It always rounds down to the nearest whole number, which may not always be the most accurate representation of the actual mathematical result.
  • Negative Number Behavior: Floor division rounds towards negative infinity, which can lead to unexpected results when working with negative numbers. This behavior may not align with the expectations of all programmers.
  • Handling Zero as a Divisor: When the divisor in a floor division operation is zero (0), Python raises a ZeroDivisionError. This can lead to runtime errors if not handled properly.
  • Potential for Divide-by-Zero Errors: If the divisor is a variable and its value is not properly controlled, it can potentially become zero, leading to divide-by-zero errors.
  • Not Suitable for Precise Fractional Calculations: Floor division is not appropriate for scenarios where precise fractional results are required. In such cases, regular division (/) or other techniques should be used.
  • Incompatibility with Some Mathematical Operations: In cases where precise floating-point arithmetic is required, floor division may not provide the desired results. More complex mathematical operations may be necessary.

Prepare yourself for the industry by going through Python Interview Questions and Answers now!

Conclusion

Floor division (//) is a fundamental arithmetic operation in Python, essential for a wide range of applications. Understanding its behavior is crucial for accurate mathematical computations and programming logic. By mastering floor division, you empower yourself to tackle a diverse set of problems with precision and efficiency in your Python projects.

If you have any doubts, you can reach out to us on our Python Community!

Course Schedule

Name Date Details
Python Course 04 May 2024(Sat-Sun) Weekend Batch
View Details
Python Course 11 May 2024(Sat-Sun) Weekend Batch
View Details
Python Course 18 May 2024(Sat-Sun) Weekend Batch
View Details

Full-Stack-ad.jpg