python输出 9*9 乘法口诀表。
时间: 2023-05-20 16:06:19 浏览: 69
新建 360压缩 ZIP 文件 (2).zip_乘法口诀表
Sure, here's the code to output the 9*9 multiplication table in Python:
```
for i in range(1, 10):
for j in range(1, 10):
print(i, "*", j, "=", i*j)
print()
```
This will print out the multiplication table in the console.
阅读全文