python division whole number code example
Example 1: integral division in python
#discards the decimal value of the output
7 // 3
# 2
Example 2: floor division python 3
# the double '//' is used for floor division
result = x//y
#discards the decimal value of the output
7 // 3
# 2
# the double '//' is used for floor division
result = x//y