Answers for "list of prime numbers in python with list comprehension"

0

list of prime numbers in python with list comprehension

n = 20

primes = [i for i in range(2, n + 1) if all(i%j != 0 for j in range(2, int(i ** 0.5) + 1))]

print(primes)
Posted by: Guest on August-18-2020

Code answers related to "list of prime numbers in python with list comprehension"

Python Answers by Framework

Browse Popular Code Answers by Language