0
点赞
收藏
分享

微信扫一扫

python for循环 打印九九乘法表

for i in range(1,10):
for j in range(1,i+1):
print(f"{j}*{i}={i*j}",end=" ")
print()


举报

相关推荐

0 条评论