Tagged Questions
1
vote
1answer
280 views
Equivalent of Python's “all” function in Mathematica
The Python function
def isPrime(n):
return all(n % i for i in xrange(2, n))
checks if a number is a prime number by using ...