使用for循环输出九九乘法表
时间: 2023-05-22 07:02:09 浏览: 120
Python用for循环实现九九乘法表
Sure, here's the code to output the multiplication table using a for loop:
for i in range(1, 10):
for j in range(1, i+1):
print('{} x {} = {}'.format(j, i, i*j), end='\t')
print()
阅读全文