Python使用while循环花式打印乘法表
作者:Mr.o.j 时间:2021-02-23 21:38:40
花式打印9*9乘法表
#第一个计数器
i = 1
while i < 10:
#第二个计数器
j = 1
while j <= i:
print('%d*%d=%d\t' %(j, i, i*j) , end=(''))
j +=1
#换行
print('')
i +=1
#输出换行
print('')
i = 1
while i <= 9:
k = 8
j = 1
while k >= i:
print('\t\t', end=(''))
k -= 1
while j <= i:
print('%d*%d=%d\t' % (j, i, i * j), end=(''))
j += 1
print('')
i += 1
print('')
i = 9
while i > 0:
j = 1
k = 8
while k >= i:
print('\t\t', end=(''))
k -= 1
while j <= i:
print('%d*%d=%d\t' % (j, i, j * i), end=(''))
j += 1
print('')
i -= 1
print('')
来源:https://blog.csdn.net/weixin_40543283/article/details/86572611
标签:python,while循环,乘法表
0
投稿
猜你喜欢
Python实现图像增强
2022-07-08 10:50:50
Python列表计数及插入实例
2023-05-26 23:41:12
Python函数式编程指南(三):迭代器详解
2023-06-03 06:11:52
python求绝对值的三种方法小结
2023-04-17 19:57:09
三分钟教会你用Python+OpenCV批量裁剪xml格式标注的图片
2023-07-09 14:11:01
用js实现用户输入密码的强度
2007-11-22 21:41:00
php查找指定目录下指定大小文件的方法
2023-09-03 17:53:36
讲解SQL Server海量数据导入的最快方法
2008-12-05 16:21:00
支持多类型数据库的c#数据库模型示例
2024-01-13 16:41:15
解决MySql8.0 查看事务隔离级别报错的问题
2024-01-17 23:14:01
mysql数据库之索引详细介绍
2024-01-19 09:06:08
Pytorch DataLoader 变长数据处理方式
2022-08-06 23:07:50
python模拟哔哩哔哩滑块登入验证的实现
2021-05-01 22:23:40
Python中遇到的小问题及解决方法汇总
2023-10-14 04:58:35
Python3实现爬取简书首页文章标题和文章链接的方法【测试可用】
2021-10-08 00:22:10
Anaconda的安装及其环境变量的配置详解
2022-08-31 19:21:11
PyTorch深度学习LSTM从input输入到Linear输出
2022-04-03 23:11:32
gethostbyaddr在Python3中引发UnicodeDecodeError
2023-06-15 09:34:33
python根据文件大小打log日志
2022-04-28 06:29:35
jdbc操作mysql数据库实例
2024-01-26 01:59:50