返回列表 發帖
  1. for x in range(1,10):
  2.     for y in range(1,10):
  3.         print("{}*{}={}".format(x,y,x*y),end="\t")
複製代碼

TOP

返回列表