首页 > 编程语言 > 详细

python随笔

时间:2017-08-07 23:59:01      阅读:436      评论:0      收藏:0      [点我收藏+]
9*9 的实例 
技术分享
first = 1

while first <= 9:

#    print("#",end="")
    sec = 1
    while  sec <= first:
        print( str(sec)+"*"+str(first)+"=",sec * first,end="\t")
        sec += 1
    first += 1
    print()
View Code

 

python随笔

原文:http://www.cnblogs.com/hxbing/p/7302497.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!