1.2.1 Numbers: Extra Calculation Properties
While a division operation you have two types of data, float and integer. Python returns float an integer division like 4/2=2.0 and not directly 2. This is a new property included with python3. If you want your result from division returns an integer, use double slash //. Check the example. [crayon-604282c2e188f949376300/] To have remainder