标签:
#!/usr/bin/python # -*- coding: UTF-8 -*- f1 = 1 f2 = 1 for i in range(1,21): print ‘%12d %12d‘ % (f1,f2) if (i % 2) == 0: print ‘‘ f1 = f1 + f2 f2 = f1 + f2
python 练习 17
原文地址:http://www.cnblogs.com/kuihua/p/5531801.html