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

python九九乘法表脚本

时间:2020-10-18 09:31:43      阅读:18      评论:0      收藏:0      [点我收藏+]

标签:obj   tab   str   utf-8   乘法表   range   脚本   The   table   

python九九乘法表脚本:

#--conding:utf-8--
auther = ‘YJ0_1‘

class PrintTable(object):

def __init__(self):
    print(‘start‘)
    self.print99()

def print99(self):
    for i in xrange(1,10):
        for j in xrange(1,i+1):
            print(‘%dx%d=%2s‘ % (j,i,i*j)),
        print(‘\n‘)

if name == ‘main‘:
pt = PrintTable()

python九九乘法表脚本

标签:obj   tab   str   utf-8   乘法表   range   脚本   The   table   

原文地址:https://blog.51cto.com/9100413/2542149

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