码迷,mamicode.com
首页 > 其他好文 > 详细

九九乘法表

时间:2020-07-27 15:35:12      阅读:53      评论:0      收藏:0      [点我收藏+]

标签:九九乘法表   mat   coding   乘法表   while   code   +=   orm   col   

# -*- coding: utf-8 -*-
# @Time    : 2020/7/25 13:59
# @Author  : Breeze

num1 = 1

while num1 <= 9:
    num2 = 1
    while num2 <= num1:
        print("{}*{}={}".format(num2,num1,num1*num2),end="\t")
        num2 += 1
    num1 += 1
    print()

 

九九乘法表

标签:九九乘法表   mat   coding   乘法表   while   code   +=   orm   col   

原文地址:https://www.cnblogs.com/wxx123/p/13384835.html

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