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

python 练习 20

时间:2016-05-26 17:16:17      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:

#!/usr/bin/python
# -*- coding: UTF-8 -*-

from sys import stdout
n = int(raw_input("input number:\n"))
print "n = %d" % n

for i in range(2,n + 1):
    while n != i:
        if n % i == 0:
            stdout.write(str(i))
            stdout.write("*")
            n = n / i
        else:
            break
print "%d" % n

 

python 练习 20

标签:

原文地址:http://www.cnblogs.com/kuihua/p/5531817.html

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