python练习-乘法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python练习-乘法相关的知识,希望对你有一定的参考价值。
n=raw_input("whcih multiplication table would you like?") m=raw_input("how high do you wat to go ?") x=int(m)+1 for i in range(1,x): print int(n)*i
以上是关于python练习-乘法的主要内容,如果未能解决你的问题,请参考以下文章
python学习--练习题678--九九乘法表,前两项相加问题,素数输出问题