标签:span style tmp ima png 测试 分享 inf src
num = 1 while num <= 9: tmp = 1 while tmp <= num: print(tmp, "*", num, "=", tmp*num, end="\t") tmp += 1 print("") num += 1
测试结果:
九九乘法表
原文地址:https://www.cnblogs.com/klvchen/p/8543493.html