I'm trying to make a list of prime factors for any number but i only want distinct numbers so i don't was to have for number 8 ( 2,2,2) I just want to get [ 2] but I'm not sure how
def primes(n):
primfac = []
d = 2
while d*d <= n:
while (n % d) == 0:
primfac.append(d)
n //= d
d += 1
if n > 1:
primfac.append(n)
return primfac
print(primes(18))
Anytime that you have multiple values you can take the set of them. If you want a list you can convert it back to a list:
The whole function now looks like: