编程语言
首页 > 编程语言> > python用for循环打印九九乘法口诀表

python用for循环打印九九乘法口诀表

作者:互联网

# 第一种方法
i = 1 # 行控制
while i < 10:
j = 1 # 列控制
while j <= i:
print('%d * %d = %-4d' % (j, i, i * j), end=' ')
j += 1
print(' ')
i += 1

# 第二种方法
for i in range(1, 10):
for j in range(1, 1 + i):
print('%d * %d =%-4d' % (j, i, i * j), end=' ')
j += 1
print(' ')
i += 1

标签:%-,10,九九乘法,end,python,口诀,while,range,print
来源: https://www.cnblogs.com/qiang6313669/p/15024765.html