Python 初学者 之 while 九九乘法表。

Posted 三道_python

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python 初学者 之 while 九九乘法表。相关的知识,希望对你有一定的参考价值。

话不多说,直接看代码

number1 = 9

while number1>0:
    print (str(number1) + "*"+ str(number1) + "=" + str(number1**2))
    number1 -=1

第一次写错了,还是int 及str的问题。看错误代码

number1 = 9

while number1>0:
    print (number1 + "*"+ number1 + "=" + number1**2)
    number1 -=1

以上是关于Python 初学者 之 while 九九乘法表。的主要内容,如果未能解决你的问题,请参考以下文章

Python应用之九九乘法表

python 九九乘法表 while循环打印

Python基础之练习题

python while 循环打印九九乘法表

用Python的while循环做九九乘法表

Shell练习小程序练习练习——九九乘法表