python核心编程第二版课后题答案第八章

def loop(f, t, i): '''8-2输入3个数字,从f计数到t,i为步长''' for n in xrange(f,t+1,i): print n, def isprime(num):

腾讯文库python核心编程第二版课后题答案第八章