用python的for循环,打印九九乘法表
摘要:用python的for循环,打印九九乘法表 Python: #! /usr/bin/env python # -*- coding:utf-8 -*- for row in range(1, 10): for col in range(1,row + 1): print("%d * %d = %d"
阅读全文
posted @ 2020-04-13 19:53
posted @ 2020-04-13 19:53
posted @ 2020-03-24 09:16