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

用Python做九九乘法表

时间:2017-02-20 01:31:15      阅读:1154      评论:0      收藏:0      [点我收藏+]

标签:python   while循环   99乘法表   

我是个Python的初学者,写的不好的地方,大家多多指教。


#!/usr/bin/env python

#coding:utf-8

i=1

while i<=9:

        j=1

        while j<=9:

                print "%d*%d=%d" %(j,i,i*j),

                if i == j :

                        break

                j=j+1

        print

        i=i+1


本文出自 “linux学习成长过程” 博客,谢绝转载!

用Python做九九乘法表

标签:python   while循环   99乘法表   

原文地址:http://syuchen.blog.51cto.com/12570224/1899303

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