返回列表 發帖
for i in range(1,10):
    for j in range(1,10):
        print(f"{i}*{j}={i*j}",end="\t")
    print()

TOP

返回列表