有Python写个99乘法表
时间: 2023-05-19 09:05:06 浏览: 57
使用python制作99乘法表
5星 · 资源好评率100%
Sure, here's the Python code for printing the 99 multiplication table:
for i in range(1, 10):
for j in range(1, i+1):
print(f"{j}x{i}={i*j}", end="\t")
print()
阅读全文