编辑代码
Python代码
3.11.0
2.7.17
运行
for
i
in
range(
0
,
10
):
for
j
in
range(
1
,i+
1
): print(
f"
{i}
*
{j}
=
{i*j}
"
, end=
' '
) print(
'\n'
)