Python 將一個正整數分解質因數

遇到一個Python編程練習題目:將一個正整數分解質因數。例如:輸入90,打印出90=2*3*3*5。python #!/usr/bin/env python # -*- coding: utf-8 -*- def div_func(n): result = [] while True: for i in xrange(2, int(n**0.5) + 1):
相關文章
相關標籤/搜索