CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
jackfrued

CoCalc provides the best real-time collaborative environment for Jupyter Notebooks, LaTeX documents, and SageMath, scalable from individual users to large groups and classes!

GitHub Repository: jackfrued/Python-100-Days
Path: blob/master/Day01-15/code/Day05/table.py
Views: 729
1
"""
2
输出乘法口诀表(九九表)
3
4
Version: 0.1
5
Author: 骆昊
6
Date: 2018-03-02
7
"""
8
9
for i in range(1, 10):
10
for j in range(1, i + 1):
11
print('%d*%d=%d' % (i, j, i * j), end='\t')
12
print()
13
14