使用python编写九九乘法表
时间: 2024-01-18 18:47:17 浏览: 75
python 实现九九乘法表
5星 · 资源好评率100%
Sure, I can help you with that! Here's some sample code to generate the multiplication table for numbers 1-9 using Python:
```
for i in range(1, 10):
for j in range(1, 10):
print(i, "*", j, "=", i*j)
```
This will print out the multiplication table from 1*1 to 9*9. Let me know if you have any other questions!
阅读全文