# using is_prime from earlier problemdef primes_range(start,end): return [n for n in range(start, end+1) if is_prime(n)]
No comments:
Post a Comment