- 1

#5.Write a Python program to create the multiplication table (from 1 to 10) of a number.

#5.Write a Python program to create the multiplication table (from 1 to 10) of a number. num=int(input('Input a number: ')) for i in range(1,11): print(num,'x',i,'=',num*i)

13th Dec 2018, 11:40 AM
Thotla Thirupathi
Thotla Thirupathi - avatar
5 Answers
+ 3
It looks good to me too!
13th Dec 2018, 12:00 PM
Kishalaya Saha
Kishalaya Saha - avatar
+ 2
I am not sending any spam here. I having some doubts. Satnam Singh
13th Dec 2018, 11:51 AM
Thotla Thirupathi
Thotla Thirupathi - avatar
+ 2
Thank you
13th Dec 2018, 11:55 AM
Thotla Thirupathi
Thotla Thirupathi - avatar
13th Dec 2018, 11:42 AM
Thotla Thirupathi
Thotla Thirupathi - avatar
+ 1
Yup and that is my attempt
13th Dec 2018, 11:54 AM
Thotla Thirupathi
Thotla Thirupathi - avatar