0

Can I get output of table of 2 in python

by using while loop can I get table of 2 or any other

17th Jan 2018, 1:29 PM
Omkar
1 Answer
+ 1
var n = raw_input("Enter the no for table") for i in range(1,10): print(n*i)
17th Jan 2018, 1:32 PM
Mayur Chaudhari
Mayur Chaudhari - avatar