第11842题
Python实现阶乘唯一质因数分解的程序横线处应填入的代码是?
def unique_fac(n):
    print(n, '=', end='')
    for i in range(2, n + 1):
        _______________
            print(' {}*'.format(i), end='')
            n //= i
        if n % i == 0 and i == n:
            print(' {}'.format(i), end='')
            break
unique_fac(math.factorial(5))
A

while n % i != 0 and i != n:

B

while n % i == 0 and i == n:

C

while n % i == 0 and i != n:

D

while n % i != 0 and i == n: