SyntaxFix
Write A Post
Hire A Developer
Questions
def is_prime(n): return all(n%j for j in xrange(2, int(n**0.5)+1)) and n>1