0
点赞
收藏
分享

微信扫一扫

python 九九乘法表 for循环

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


举报

相关推荐

0 条评论