标签:python实现九九乘法表

python实现九九乘法表

#python实现九九乘法表

📚 共 2 篇文章 🏷️ 标签分类 📝 python实现九九乘法表
python实现九九乘法表

python九九乘法表的实例

python2.7foriinrange(1,10):forjinrange(1,i+1):printj,'x',i,'=',j*i,'\t',print'\n'print'\nDone'python3.7i=1whilei<=9:j