python九九乘法口诀
时间: 2023-08-17 16:11:15 浏览: 84
9*9乘法口诀
Sure! Here is the Python code for the multiplication table up to 9x9:
```python
for i in range(1, 10):
for j in range(1, 10):
result = i * j
print(f"{i} x {j} = {result}")
print()
```
This code will print the multiplication table from 1x1 to 9x9, with each equation on a new line.
阅读全文