# -*- 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()

 

posted on 2020-07-27 12:38  我是一个菜鸡  阅读(91)  评论(0)    收藏  举报