10.15例题
Posted brzp97
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了10.15例题相关的知识,希望对你有一定的参考价值。
99乘法表
************************************************************************
v = ‘{0}*{1}={2}‘
c = ‘‘
for a in range(1, 10):
for b in range(1, 10):
if b < a:
s = ‘ ‘
c += s
else:
if b == 9:
s = v.format(a, b, a*b) + ‘ ‘
c += s
else:
s = v.format(a, b, a * b) + ‘ ‘
c += s
print(c)
*************************************************************************
for y in range(1, 10):
for i in range(1, y+1):
print(str(i) + ‘*‘ + str(y) + ‘=‘ + str(i * y)+‘ ‘,end=‘‘)
print(‘ ‘, end=‘‘)
*************************************************************************
仔细分析构思,明确需求
最简洁的往往是最好的
虚心学习
以上是关于10.15例题的主要内容,如果未能解决你的问题,请参考以下文章