4
x = 19 y = 5 z = x % y print(z)
125 <class 'int'>
x = 5 ** 3 print(x) print(type(x))
3.0 <class 'float'>
a = 17.5 // 4.5 print(a) print(type(a))