table = int(input("Enter the table: ")) limit = int(input("Enter the ending : ")) for i in range(limit,0,-1): print(i,"*",table,"=",i*table)To download raw file Click Here
Enter the table: 5 Enter the ending : 10 10 * 5 = 50 9 * 5 = 45 8 * 5 = 40 7 * 5 = 35 6 * 5 = 30 5 * 5 = 25 4 * 5 = 20 3 * 5 = 15 2 * 5 = 10 1 * 5 = 5
Learn All in Tamil © Designed & Developed By Tutor Joes | Privacy Policy | Terms & Conditions