用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):
相關文章
相關標籤/搜索