python練習實例14,題目:將一個正整數分解質因數。例如:輸入90,打印出90=2*3*3*5。

def reduceNum(n): print '{}='.format(n) if not isinstance(n, int) or n <= 0: print '請輸入一個正確的數字!' elif n in [1]: print '{}'.format(n) while n not in [1]: for i in xran
相關文章
相關標籤/搜索