码迷,mamicode.com
首页 > 编程语言 > 详细

python 练习 17

时间:2016-05-26 17:12:08      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:

#!/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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!