乘法口诀表 python
时间: 2023-12-03 20:40:50 浏览: 89
python写乘法口诀表
5星 · 资源好评率100%
以下是用Python打印九九乘法表的代码:
```python
def multiplication(n):
if n < 10:
for m in range(1, n+1):
print(f"{m}*{n}={m*n}", end="\t")
print()
multiplication(n+1)
multiplication(1)
```
运行上述代码,即可输出九九乘法表。
阅读全文