【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 = "  ")

 

效果:

 

 

原题给出的方法:

 

 

 

 

 

 

 

 

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

参考:

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

 

posted @ 2019-09-22 18:00  sszqxt  阅读(230)  评论(0编辑  收藏  举报