使用python编写九九乘法表
时间: 2024-01-18 10:47:17 浏览: 76
python编写九九乘法表源码
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!
阅读全文