I want to find all prime factors of a given integer. So I tried this:
n = 210 k = 0 list = [] for i in range(2, n): if n % i == 0: for j in range(