标签:九九乘法表 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