Modulo (Remainder)

Output



4
Code
x = 19
y = 5
z = x % y
print(z)

Exponentiation

Output

125 <class 'int'>
Code
x = 5 ** 3
print(x)
print(type(x))

Integer Division

Output

3.0 <class 'float'>
Code
a = 17.5 // 4.5
print(a)
print(type(a))