📜  编写一个 python 程序来使用 while 循环查找数字表 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:04.278000             🧑  作者: Mango

代码示例1
a=int(input("enter table number"))
b=int(input("enter the number to which table is to printed"))
i=1
while i<=b:
    print(a,"x",i,"=",a*i)
    i=i+1