python 九九乘法表
当前位置:以往代写 > Python教程 >python 九九乘法表
2019-06-14

python 九九乘法表

python 九九乘法表
python"># 9*9
for i in list(range(1,10)):
    for j in list(range(1,10)):
        if i >= j:
            print(i * j, '', end='');
        else:
            print("\n");
            break;

标签:python

    关键字:

在线提交作业