用python写九九乘法表

需求:打印出九九乘法表函数 while循环:spa 代码: orm i = 1 while i<= 9 : j=1 while j <=i : print("{}*{}={}".format(i,j,i*j),end=" ") j += 1 i += 1 print()也能够用for in 循环 : for x in range(1,10):
相关文章
相关标签/搜索