首页
科技
登录
6mi
u
盘
搜
搜 索
科技
python编写九九乘法口诀表
python编写九九乘法口诀表
科技
2022-07-10
131
# -*- coding: UTF-8 -*-
# Filename : test.py
# author by : www.runoob.com
# 九九乘法表
for
i
in
range
(
1
,
10
)
:
for
j
in
range
(
1
,
i
+
1
)
:
print
(
'{}x{}={}\t'
.
format
(
j
,
i
,
i
*
j
)
,
end
=
''
)
print
(
)
转载请注明原文地址:https://blackberry.8miu.com/read-914.html
最新回复
(
0
)