python的乘法口诀表
python的乘法口诀表
用python来写一个脚本,使得这个脚本在运行后自动输出乘法口诀表。
pyton的脚本如下:
#!/usr/bin/env python
#coding:utf-8
"""
file: chengfa.py
date: 2017-08-24
author:lijian
desc:
"""
for i in range(1,10):
for j in range(1,i+1):
print "{} x {} = {}\t".format(j,i,j*i),
print "\n"
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
运行后可以输出乘法口诀表,输出图如下所示。
原文地址:https://www.cnblogs.com/davidshen/p/8146007.html
时间: 2024-10-10 06:42:31