About 1,330,000 results
Open links in new tab
  1. Modulo operator in Python - Stack Overflow

    What does modulo in the following piece of code do? from math import * 3.14 % 2 * pi How do we calculate modulo on a floating point number?

  2. What is the result of % (modulo operator / percent sign) in Python?

    This is because in JavaScript % is the "remainder" operator while in Python it is the "modulus" (clock math) operator. You can get the explanation directly from GvR: Edit - dahiya_boy In …

  3. Understanding The Modulus Operator - Stack Overflow

    Jul 8, 2013 · 0 Modulus operator gives you the result in 'reduced residue system'. For example for mod 5 there are 5 integers counted: 0,1,2,3,4. In fact 19=12=5=-2=-9 (mod 7). The main …

  4. How to calculate a mod b in Python? - Stack Overflow

    Jun 13, 2009 · Is there a modulo function in the Python math library? Isn't 15 % 4, 3? But 15 mod 4 is 1, right?

  5. The modulus operator (%) in python - Stack Overflow

    May 9, 2019 · I am new to programming, and I chose to learn Python, and I came across this operator (%) called modulus, but I don't understand it, can some explain it to me in more detail!

  6. How does the modulo (%) operator work on negative numbers in …

    Oct 7, 2010 · Exactly how does the % operator work in Python, particularly when negative numbers are involved? For example, why does -5 % 4 evaluate to 3, rather than, say, -1?

  7. Python modulo on floats - Stack Overflow

    Feb 8, 2013 · Can anyone explain how the modulo operator works in Python? I cannot understand why 3.5 % 0.1 = 0.1.

  8. Modular multiplicative inverse function in Python - Stack Overflow

    201 Does some standard Python module contain a function to compute modular multiplicative inverse of a number, i.e. a number y = invmod(x, p) such that x*y == 1 (mod p)? Google …

  9. python - Difference between modulus (%) and floor division (//) in ...

    Jun 17, 2019 · 3 Recently, I read a book on Numpy which mentions different types of ufuncs, where I was encountered with two different ufuncs, namely 'modulus', denoted by % symbol …

  10. math - Modular addition in python - Stack Overflow

    Aug 11, 2014 · Modular addition in python Asked 14 years, 4 months ago Modified 2 years, 6 months ago Viewed 49k times