0
Can I get output of table of 2 in python
by using while loop can I get table of 2 or any other
1 Answer
+ 1
var n = raw_input("Enter the no for table")
for i in range(1,10):
print(n*i)
by using while loop can I get table of 2 or any other