码迷,mamicode.com
首页 > 编程语言 > 详细

python3 分解质因数

时间:2018-06-21 01:36:18      阅读:337      评论:0      收藏:0      [点我收藏+]

标签:RoCE   append   for   pytho   author   lis   python36   inpu   exe   

python3 分解质因数

#!/usr/bin/env python
# -*- coding:utf-8 -*-
# Author:Hiuhung Wan

num = int(input("请输入一个合数:"))
n = num
list1 = []  #存放质因数
for j in range(int(n/2)+1):
    for i in range(2,n):
        if num % i == 0:  #可以整除
            list1.append(i)
            num = num // i
            break
if len(list1) == 0:
    print("此数是是质数,请重新输入另一个数")
    exit()
#print(list1)
print(‘%d = ‘%(n),end=‘‘)
for i in range(len(list1)):
    if i  == len(list1)-1:
        print(‘%s‘ % (list1[i]))
    else:
        print(‘%s * ‘ % (list1[i]),end=‘‘)

  效果:

C:\Python36\python.exe D:/Py/1704/day03/分解质因数.py
请输入一个合数:15741
15741 = 3 * 3 * 3 * 11 * 53

Process finished with exit code 0

  

python3 分解质因数

标签:RoCE   append   for   pytho   author   lis   python36   inpu   exe   

原文地址:https://www.cnblogs.com/hiuhungwan/p/9206720.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!