【Python】【demo实验2】【打印乘法口诀表】

打印乘法口诀表

源代码:

# encoding=utf-8
for i in range(1,10):
print("\n")
for j in range(1,10):
if i<j:
continue
else :
print(j,"X",i,"=",i*j,end = " ")

效果:

【Python】【demo实验2】【打印乘法口诀表】

原题给出的方法:

【Python】【demo实验2】【打印乘法口诀表】

————————(我是分割线)————————

参考:

1、https://www.runoob.com/python/python-exercise-example8.html

备注:

初次编辑时间:2019年9月22日18:01:28

第一次修改:2019年9月24日20:00:01  /添加Runoob给出的解答

环境:Windows 7   / Python 3.7.2

上一篇:python 九九乘法口诀


下一篇:typedef 优于 #define