Python小代码_1_九九乘法表
Python小代码_1_九九乘法表
max_num = 9 row = 1 while row <= max_num: col = 1 while col <= row: print(str(col) + "*" + str(row) + "=" + str(col*row), end="\t") col += 1 row += 1 print()
for i in range(1, 10): for j in range(1, i+1): print('{0}*{1}={2}'.format(i, j, i*j).ljust(6), end=' ') print()
本博客内容已全部迁移到我的个人网站 木子窗明(www.muzicm.cn),以后都只会在我的个人网站上首发博客,详情请查看我的个人网站。