分解质因数
1 n=int(input("请输入需要分解的数字:"))
2 print("{} =".format(n),end=' ')
3 while n>1:
4 for i in range(2,n+1):
5 if n%i==0:
6 n=int(n/i)
7 if n==1:
8 print(i)
9 else:
10 print("{} *".format(i),end=' ')
11 break
标签:11,end,5.5,format,int,分解,print
来源: https://www.cnblogs.com/wupeiyaozero/p/16224272.html