⊗pyPmIBMD 178 of 208 menu

Dividing Numbers in Python

math.remainder math.fmod divmod math.modf

Two numbers are given:

num1 = 10 num2 = 45

Find the integer remainder from their division.

Two numbers are given:

num1 = 12.4 num2 = 30

Find the remainder when dividing the second number by the first. The result should be a floating-point number.

Two numbers are given:

num1 = 5 num2 = 3

Obtain a tuple of the division result and the remainder of the division.

Given a number:

num = 2.34

Find a tuple of its fractional and integer parts.

Given a number:

num = 4.8

Get a list from its fractional and integer parts.

byenru