python输出9*9口诀
时间: 2023-12-24 09:02:41 浏览: 23
python 输出 9*9 乘法口诀表(示例)
5星 · 资源好评率100%
Sure, here's the Python code to output the 9x9 multiplication table:
```
for i in range(1, 10):
for j in range(1, 10):
print(i, '*', j, '=', i*j)
print()
```
Is there anything else you'd like me to help you with?
阅读全文