python嵌套循环——打印九九乘法表
程序员文章站
2022-06-05 22:09:41
...
python 代码
row = 1 # 行号
while row<=9:
col = 1 # 列号
while col<=row:
# print("*",end="")
print("%d * %d = %d" %(col,row,col*row) ,end="\t") # 用转义字符 \t 使输出结果对齐
col += 1
print("")
row += 1
打印效果