条件和循环

#!/usr/bin/env python

def MaxFactor(num):
  count= num/2
  while count >1:
  if num%count==0:
    print 'larget factor of %d is %d' % (num,count)
    break
  count-=1
  else:
    print num,"is prime"
for eachNum in range(1,100):
  MaxFactor(eachNum)

原文地址:https://www.cnblogs.com/timp/p/3726593.html