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 九九乘法表。的主要内容,如果未能解决你的问题,请参考以下文章