test_03函数_01_九九乘法表

def multiple_table():
# 在控制台连续输出五行 *,每一行星号的数量依次递增
# *
# **
# ***
# ****
# *****
# 开发步骤
# 1> 完成 5 行内容的简单输出
# 2> 分析每行内部的 * 应该如何处理?

row = 1

while row <= 9 :

col = 1

while col <= row :

# print("*", end="")
print("%d * %d = %d" % (col, row, col * row), end="\t")

col += 1

print("")

row += 1

multiple_table()
test_03循环_01_九九乘法表
posted @ 2019-05-12 11:15  di_diaohuai  阅读(126)  评论(0编辑  收藏  举报