Numeric Operations
/ performs true division, returning a floating-point result. The // operator performs truncating division, which means it returns an integer result and ignores the remainder, if any.
The built-in divmod function takes two numeric arguments and returns a pair whose items are the quotient and remainder