From __FUTURE__ Import Division imports the Language Feature Division (exact division) of Python's future support, the "/" operator performs truncation division when we do not import the feature in the Program (truncating division) , when we import the exact division, "/" performs the exact division, as follows:-------------------------------------------------------------------------------- ------------->>> 3/4
0
>>> from __future__ Import Division
>>> 3/4
0.75
To perform a truncated division after--------------------------------------------------------------------------------------------import of exact division, You can use the///operator:--------------------------------------------------------------------------------------------
>>> 3//4
0
>>>
--------------------------------------------------------------------------------------------